1234567891011121314151617181920212223242526272829 |
- .header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 100px;
- .title {
- color: #000000;
- font-weight: 600;
- font-size: 24px;
- }
- }
- .c {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 50px;
- .title {
- color: #000;
- font-weight: 600;
- font-size: 24px;
- &::before {
- margin-right: 10px;
- color: #f0da21;
- font-weight: normal;
- font-size: 32px;
- content: '/';
- }
- }
- }
|