style.js 394 B

1234567891011121314151617181920
  1. import styled from 'styled-components';
  2. export const FileCheckboxItem = styled.div `
  3. margin-top: 15px;
  4. > p {
  5. margin: 0 0 5px;
  6. font-size: 14px;
  7. line-height: 32px;
  8. &::before {
  9. display: inline-block;
  10. color: #ff4d4f;
  11. font-size: 14px;
  12. font-family: SimSun, sans-serif;
  13. line-height: 1;
  14. content: '*';
  15. margin-inline-end: 4px;
  16. }
  17. }
  18. `;