fluidHeight.tsx 222 B

123456789101112
  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. height: 100%;
  9. `;
  10. export default FluidHeight;