status.styles.ts 714 B

1234567891011121314151617181920212223242526272829303132
  1. import { rem } from 'polished';
  2. import styled from 'styled-components';
  3. import { FlexColumn, FlexRow } from '../styled/layout';
  4. import { colors } from '../styled/variables';
  5. export const StatusContainer = styled(FlexColumn)`
  6. flex: 0 0 ${rem(32)};
  7. width: 100%;
  8. `;
  9. export const TrackMetadata = styled(FlexRow)`
  10. background: ${colors.selected.background};
  11. color: ${colors.foreground};
  12. flex: 1;
  13. white-space: nowrap;
  14. width: 100%;
  15. `;
  16. export const PlayStatus = styled(FlexRow)`
  17. background: ${colors.selected.inactive};
  18. color: ${colors.background};
  19. flex: 1;
  20. justify-content: space-between;
  21. width: 100%;
  22. `;
  23. export const Time = styled.div`
  24. flex: 1;
  25. `;
  26. export const ClientName = styled.span``;