样式优化

This commit is contained in:
2025-09-18 23:38:20 +08:00
parent b499a57f1f
commit 3915a8cd46
6 changed files with 102 additions and 23 deletions

View File

@@ -55,9 +55,9 @@
display: flex;
justify-content: center;
align-items: center;
padding: 4px 16px;
padding: 6px 16px;
border-radius: 20px;
min-width: 60px;
white-space: nowrap;
.button_text {
font-family: PingFang SC;
@@ -98,4 +98,28 @@
pointer-events: none;
}
}
.delete_button {
width: 20px;
height: 20px;
margin-left: 4px;
display: flex;
justify-content: center;
align-items: center;
&::before, &::after {
content: "";
display: block;
width: 13px;
height: 2px;
border-radius: 2px;
background: #8c8c8c;
position: absolute;
}
&::before {
transform: rotate(45deg);
}
&::after {
transform: rotate(-45deg);
}
}
}