| 1234567891011121314151617181920 |
- import styled from 'styled-components';
- export const FileCheckboxItem = styled.div `
- margin-top: 15px;
- > p {
- margin: 0 0 5px;
- font-size: 14px;
- line-height: 32px;
- &::before {
- display: inline-block;
- color: #ff4d4f;
- font-size: 14px;
- font-family: SimSun, sans-serif;
- line-height: 1;
- content: '*';
- margin-inline-end: 4px;
- }
- }
- `;
|