fluidHeight.tsx 206 B

1234567891011
  1. import styled from '@emotion/styled';
  2. const FluidHeight = styled('div')`
  3. display: flex;
  4. flex-direction: column;
  5. flex-wrap: nowrap;
  6. flex-grow: 1;
  7. overflow: hidden;
  8. `;
  9. export default FluidHeight;