22 lines
370 B
SCSS
22 lines
370 B
SCSS
.tag-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
.tag-item {
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
padding: 4px 10px;
|
|
margin-right: 8px;
|
|
margin-bottom: 8px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tag-text {
|
|
color: #00a6ff; /* 蓝色文字,可根据设计调整 */
|
|
font-size: 14px;
|
|
}
|