styled.ts 284 B

1234567891011121314
  1. import styled from 'styled-components';
  2. export const ThumbnailsWrapper = styled.div`
  3. display: inline-flex;
  4. flex-direction: column;
  5. `;
  6. export const Body = styled.div`
  7. height: calc(100% - 60px);
  8. overflow: scroll;
  9. padding: 8px;
  10. text-align: center;
  11. position: relative;
  12. `;