File size: 904 Bytes
6b8fc2c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
.settingPage {
padding: 10px;
}
.avatar {
display: flex;
justify-content: center;
}
.tenantIfo {
height: 50px;
background-color: #f4dfdf;
margin-bottom: 10px;
padding: 5px;
box-sizing: border-box;
display: flex;
align-items: center;
}
.list {
:global {
.ant-pro-card-header {
height: 150px;
background-color: rgb(229, 231, 235);
}
}
}
ul {
li {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
.statusDisaabled {
width: 10px;
height: 10px;
border-radius: 40%;
background: rgba(0, 0, 0, 0.4);
}
.statusAvailable {
width: 10px;
height: 10px;
border-radius: 50%;
background: green;
}
}
} |