31 lines
527 B
SCSS
31 lines
527 B
SCSS
.panel-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: 10px;
|
|
}
|
|
|
|
.panel-item {
|
|
background-color: #F9FAFC;
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 14px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.panel-icon {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
.panel-text {
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
color: #00000066;
|
|
opacity: 0.8;
|
|
} |