-
BINsrc/assets/img/cala.png
-
BINsrc/assets/img/clock.png
-
BINsrc/assets/img/status.png
-
31src/components/Header/Date.vue
-
42src/components/Header/User.vue
-
8src/components/Header/index.vue
Before Width: 32 | Height: 30 | Size: 717 B After Width: 28 | Height: 26 | Size: 342 B |
Before Width: 26 | Height: 26 | Size: 586 B After Width: 26 | Height: 26 | Size: 582 B |
Before Width: 36 | Height: 36 | Size: 995 B After Width: 36 | Height: 36 | Size: 834 B |
@ -1,7 +1,45 @@ |
|||
<template> |
|||
<div class="user_info_container">123</div> |
|||
<div class="user_info_container"> |
|||
<p class="user_name">毛超颖</p> |
|||
<div class="avator_wrap">毛</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup></script> |
|||
|
|||
<style lang="scss" scoped></style> |
|||
<style lang="scss" scoped> |
|||
.user_info_container { |
|||
width: 234px; |
|||
height: 68px; |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: center; |
|||
margin-left: 20px; |
|||
.user_name { |
|||
font-family: Poppins; |
|||
font-size: 26px; |
|||
font-weight: 500; |
|||
line-height: normal; |
|||
letter-spacing: 0.1em; |
|||
color: #d6d9f1; |
|||
margin-right: 11px; |
|||
} |
|||
.avator_wrap { |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: center; |
|||
width: 60px; |
|||
height: 60px; |
|||
background: #26d574; |
|||
box-sizing: border-box; |
|||
border: 3px solid #22c56b; |
|||
font-family: Poppins; |
|||
font-size: 28px; |
|||
font-weight: 500; |
|||
line-height: normal; |
|||
letter-spacing: 0.1em; |
|||
border-radius: 50%; |
|||
color: #ffffff; |
|||
} |
|||
} |
|||
</style> |