no message

This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-09-11 14:45:15 +08:00
parent cdd34ea0ed
commit 7116519dd8
5 changed files with 322 additions and 43 deletions

View File

@@ -859,17 +859,37 @@
margin-bottom: 32px;
.bar {
// width: 500px;
height: 4px;
background-color: rgba(255, 255, 255, 1);
border-radius: 10px;
}
position: relative;
cursor: pointer;
.circle {
width: 10px;
height: 10px;
background-color: #f3974b;
border-radius: 50%;
&.white {
width: 0;
border-radius: 10px 0 0 10px;
background-color: #5241b0;
&::before {
content: "";
width: 10px;
height: 10px;
background-color: #f3974b;
border-radius: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: -5px;
cursor: pointer;
z-index: 1;
display: block;
}
}
&.black {
background-color: rgba(0, 0, 0, 1);
border-radius: 0 10px 10px 0;
}
}
}