39 lines
794 B
Plaintext
39 lines
794 B
Plaintext
.user_info_header {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-image: url("@/assets/images/background.png") ;
|
|
background-size: cover;
|
|
border-radius: 10px;
|
|
height: 150px;
|
|
box-shadow: rgba(15, 15, 16, 0.18) 0px 10px 10px;;
|
|
}
|
|
.user_info_header_avatar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.user_info_header_name {
|
|
font-weight: bold;
|
|
color: #000000;
|
|
}
|
|
.user_info_header_desc {
|
|
width: 300px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
.user_info_center_content{
|
|
margin-top: 20px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
.user_info_bottom_content {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|