/
Rics
/
JobReady
Обзор
Документация
Войти
/
Rics
/
JobReady
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Front/src/shared/components/CustomCheckbox/checkbox.module.scss
37 строк
646 B
Rics
add app
16 сен 2025, 16:56
16 сен 2025, 16:56
75981cd
Код
Авторство
О чём код?
.checkbox { position: relative; width: 20px; height: 20px; border-radius: 50%; background: rgba(254, 254, 254, 0.5); border: 1px solid rgba(254, 254, 254, 0.7); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; .innerCircle { width: 14px; height: 14px; border-radius: 50%; background: transparent; transition: all 0.3s ease; } } .checked { background: rgba(254, 254, 254, 0.5); border: 1px solid var(--accent); .innerCircle { background: var(--accent); } } .input { position: absolute; opacity: 0; pointer-events: none; }