/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/universal-app/styles.scss
36 строк
707 B
Wagner Maciel
feat(material/core): deprecate the core mixin (#29906)
22 окт 2024, 23:41
Не верифицирован
22 окт 2024, 23:41
ea0d1ba
Код
Авторство
О чём код?
@use '@angular/material' as mat; @include mat.app-background(); $theme: mat.define-theme(( color: ( theme-type: light, primary: mat.$azure-palette, tertiary: mat.$blue-palette, ), density: ( scale: 0, ) )); html { @include mat.all-component-themes($theme); } @include mat.typography-hierarchy($theme); body.test-automated { // Make sure bottom sheet doesn't obscure components. padding-bottom: 80px; // Hide the overlay so hover styles can be tested, // but show a message so we can see that the overlay is there. .cdk-overlay-backdrop { bottom: 100vh !important; } .cdk-overlay-backdrop::after { content: 'OVERLAY ACTIVE'; background: lime; } }