| 123456789101112131415161718192021222324252627282930313233343536373839 |
- @import '@/utils/common.scss';
- .header{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- height: 48px;
- align-items: center;
- margin-left: 0px;
- margin-right: 0px;
- }
- .header_title{
- color: #fff;
- font-size: 48px;
- line-height: 48px;
- font-weight: 500;
- }
- .header_action{
- // color: $fastColor;
- font-size: 32px;
- line-height: 32px;
- font-weight: 500;
- padding-top: 12px;
- padding-bottom: 4px;
- padding-right: 20px;
- padding-left: 20px;
- // background-color: blue;
- }
- /* #ifdef weapp */
- .fast_sleep_more {
- background: linear-gradient(90deg, $fastColor 0%, $sleepColor 100%);
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
- }
- /* #endif */
|