Search code examples
cssreactjsflexboxheightantd

AntDesign TabPane min-height 100%


Using Ant.Design Tabs https://ant.design/components/tabs/

How can I set styling on TabPane so that it's min-height is always 100% height of the window even when it's empty?

Below example should cover the window with color #F5F5F5

Edit epic-flower-tg0g3


Solution

  • This has worked for me.

    <TabPane tab={tab.title} key={index}>
    <Row>
      <Col style={{minHeight: "100vh", maxheight: "100vh"}}>
       Test
      </Col>
    </Row>
    </TabPane>