/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
core/scss/mixins/bootstrap/_backdrop.scss
22 строки
462 B
Bartosz-Do
Migrate CSS direction properties to logical properties for improved RTL support (#2773)
05 авг 2026, 02:58
Не верифицирован
05 авг 2026, 02:58
7ae422f
Код
Авторство
О чём код?
@use '../../settings' as *; @use '../../variables' as *; @use '../functions' as *; @use 'breakpoints' as *; // Shared between modals and offcanvases @mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) { position: fixed; inset-inline-start: 0; top: 0; z-index: $zindex; width: 100vw; height: 100vh; background-color: $backdrop-bg; // Fade for backdrop &.fade { opacity: 0; } &.show { opacity: $backdrop-opacity; } }