TopicContent.styled.ts 473 B

123456789101112131415161718
  1. import styled, { css } from 'styled-components';
  2. export const TopicContentWrapper = styled.tr`
  3. background-color: ${({ theme }) => theme.default.backgroundColor};
  4. & > td {
  5. padding: 16px !important;
  6. background-color: ${({ theme }) =>
  7. theme.consumerTopicContent.td.backgroundColor};
  8. }
  9. `;
  10. export const ContentBox = styled.div(
  11. ({ theme }) => css`
  12. background-color: ${theme.default.backgroundColor};
  13. padding: 20px;
  14. border-radius: 8px;
  15. `
  16. );