123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* 自定义样式 */
- .action {
- background-image: url(@/assets/UserDropdown/userBg.png);
- background-size: contain;
- background-repeat: no-repeat;
- width: 128px;
- height: 36px;
- cursor: pointer;
- display: inline-block;
- margin-right: 48px;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .userIcon {
- background-image: url(@/assets/UserDropdown/userIcon.png);
- background-size: contain;
- background-repeat: no-repeat;
- width: 14px;
- height: 16px;
- margin-left: 10px;
- margin-right: 15px;
- }
- .arrow {
- background-image: url(@/assets/UserDropdown/arrow.png);
- background-size: contain;
- background-repeat: no-repeat;
- width: 6px;
- height: 3px;
- }
- .name {
- // margin-left: 8px;
- // margin-right: 30px;
- font-size: 15px;
- font-weight: 350;
- color: #e8f7fc;
- line-height: 17px;
- letter-spacing: 1px;
- width: 66px;
- text-align: right;
- margin-left: 10px;
- }
|