artists.styles.ts 359 B

12345678910111213141516
  1. import { rem } from 'polished';
  2. import styled from 'styled-components';
  3. import { ActiveHighlightRow, FlexList } from '../styled/layout';
  4. export const Container = styled(FlexList)`
  5. flex: 1 0 0;
  6. `;
  7. export const ArtistTitle = styled(ActiveHighlightRow)``;
  8. export const AlbumTitle = styled(ActiveHighlightRow)`
  9. span {
  10. padding-left: ${rem(32)};
  11. }
  12. `;