Guest User

Untitled

a guest
Apr 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. const TabsContainer = styled('div')`
  2. display: flex;
  3. flex-direction: column;
  4. flex-wrap: nowrap;
  5. width: 100%;
  6. box-sizing: border-box;
  7. `
  8.  
  9. const Heading = styled('div')`
  10. display: flex;
  11. flex-direction: row;
  12. flex-wrap: nowrap;
  13. position: relative;
  14. border-bottom: 1px solid ${({ theme }) => theme.tabs.underlineColor};
  15. `
  16.  
  17. const Content = styled('div')`
  18. padding-top: 1rem;
  19. flex-grow: 1;
  20. `
Add Comment
Please, Sign In to add comment