Files
dashboards/apps/super-admin/src/components/ToggleSwitch.module.css
T
Alireza HassaniandCursor f566387c61 Initial commit: Meshkee dashboards monorepo.
Includes business, customer, and super-admin apps with shared packages and production deploy scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-22 13:48:53 +03:30

35 lines
541 B
CSS

.switch {
position: relative;
width: 38px;
height: 22px;
border-radius: 999px;
background: rgba(148, 163, 184, 0.45);
transition: background 0.2s;
flex-shrink: 0;
}
.switch.on {
background: #16a34a;
}
.thumb {
position: absolute;
top: 2px;
left: 2px;
width: 18px;
height: 18px;
border-radius: 50%;
background: white;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
transition: transform 0.2s;
}
.switch.on .thumb {
transform: translateX(16px);
}
.switch:disabled {
opacity: 0.5;
cursor: not-allowed;
}