restructuring, removed unneccessary options from web ui
This commit is contained in:
@@ -59,7 +59,21 @@ body {
|
||||
stroke-dashoffset: 48;
|
||||
animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
|
||||
}
|
||||
|
||||
/* Toggle switch */
|
||||
.toggle-track {
|
||||
width: 40px; height: 22px; border-radius: 11px;
|
||||
background: #a8a8a8; position: relative; cursor: pointer;
|
||||
transition: background 0.2s ease; flex-shrink: 0;
|
||||
}
|
||||
.toggle-track::after {
|
||||
content: ''; position: absolute; top: 2px; left: 2px;
|
||||
width: 18px; height: 18px; border-radius: 50%;
|
||||
background: #64748b; transition: all 0.2s ease;
|
||||
}
|
||||
input:checked + .toggle-track { background: #7ac142; }
|
||||
input:checked + .toggle-track::after {
|
||||
transform: translateX(18px); background: #fff;
|
||||
}
|
||||
@keyframes stroke {
|
||||
100% {
|
||||
stroke-dashoffset: 0;
|
||||
|
||||
Reference in New Issue
Block a user