nes-react icon indicating copy to clipboard operation
nes-react copied to clipboard

parent `backgroundColor` and `backgroundImage` children Container border

Open vmaark opened this issue 3 years ago • 0 comments

Love the lib, but ran into a problem fast, setting a background messes up children's Container borders. how to reproduce:

 <div
  style={{
    backgroundColor: "#59AAAA",
  }}
>
   <Container>
      <p>Containers</p>
      <Row>
        <Col>
          <Container>Regular</Container>
        </Col>
        <Col>
          <Container rounded>Rounded</Container>
        </Col>
        <Col>
          <Container title="With Title">Title for this one</Container>
        </Col>
      </Row>
      <Row>
        <Col>
          <Container dark>Dark</Container>
        </Col>
        <Col>
          <Container centered>Centered text for this one!</Container>
        </Col>
      </Row>
    </Container>
  </div>

vmaark avatar Aug 29 '21 08:08 vmaark