/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
web/apps/labelstudio/src/components/Space/Space.prefix.css
53 строки
799 B
Raul Martin
feat: Migrate SCSS to plain CSS with PostCSS, replace Stylelint with Biome (#9584)
12 мар 2026, 20:57
Не верифицирован
12 мар 2026, 20:57
3f31128
Код
Авторство
О чём код?
.space-ls { display: grid; grid-gap: 16px; grid-auto-flow: column; align-items: center; grid-auto-columns: max-content; &_direction { &_horizontal { grid-auto-flow: column; align-items: center; grid-auto-columns: max-content; } &_vertical { grid-auto-flow: row; justify-content: center; grid-auto-rows: max-content; } } &_spread { width: 100%; justify-content: space-between; } &_align { &_start { justify-content: flex-start; } &_end { justify-content: flex-end; } } &_stretch &_direction { &_horizontal { grid-auto-columns: 1fr; grid-auto-rows: 1fr; } } &_size { &_large { grid-gap: 32px; } &_small { grid-gap: 12px; } } }