/
task-tracker
/
TaskTracker.UI
Обзор
Документация
Войти
/
task-tracker
/
TaskTracker.UI
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
src/styles/_status-light.scss
38 строк
812 B
Ametusik
#1
: Архитектура проекта
28 апр 2025, 12:44
28 апр 2025, 12:44
f47df22
Код
Авторство
О чём код?
@use "colors"; .status-light { display: flex; box-sizing: border-box; position: relative; width: 100%; height: 100%; text-align: center; justify-content: flex-start; align-items: center; padding-left: 15px; &.active:before { content: " "; width: 10px; height: 10px; border-radius: 5px; background-color: colors.$background-color-success; position: absolute; left: 0; top: calc(50% - 5px); box-shadow: 0 0 3px 1px colors.$background-color-success; } &.disable:before { content: " "; width: 10px; height: 10px; border-radius: 5px; background-color: colors.$background-color-error; position: absolute; left: 0; top: calc(50% - 5px); box-shadow: 0 0 3px 1px colors.$background-color-error; } }