/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
core/scss/bootstrap/_grid.scss
40 строк
666 B
Bartosz-Do
Move `--tblr-` custom-property prefixing from Sass to PostCSS (#2795)
06 авг 2026, 00:48
Не верифицирован
06 авг 2026, 00:48
cad8eb8
Код
Авторство
О чём код?
// Row // // Rows contain your columns. @use '../config' as *; :root { @each $name, $value in $grid-breakpoints { --breakpoint-#{$name}: #{$value}; } } @if $enable-grid-classes { .row { @include make-row(); > * { @include make-col-ready(); } } } @if $enable-cssgrid { .grid { display: grid; grid-template-rows: repeat(var(--rows, 1), 1fr); grid-template-columns: repeat(var(--columns, #{$grid-columns}), 1fr); gap: var(--gap, #{$grid-gutter-width}); @include make-cssgrid(); } } // Columns // // Common styles for small and large grid columns @if $enable-grid-classes { @include make-grid-columns(); }