Migrate to modernize template

This commit is contained in:
Marek Lesko
2025-10-19 16:34:01 +00:00
parent 9deee01ba3
commit aba8943d17
666 changed files with 25377 additions and 45152 deletions

View File

@@ -0,0 +1,25 @@
@use "sass:map";
@use "@angular/material" as mat;
@use "../variables" as *;
html {
@include mat.theme(
(
color: mat.$azure-palette,
typography: $font-family,
)
);
@include mat.theme-overrides(
(
primary: rgb(93, 135, 255),
error: rgb(250, 137, 107),
body-medium-size: 14px,
body-large-size: 14px,
outline-variant: #d7dde2,
level1: 0px 12px 24px -4px rgb(145 158 171 / 30%),
level2: rgba(145, 158, 171, 0.12) 0px 1px 16px,
level3: 0px 12px 24px -4px rgb(145 158 171 / 30%),
)
);
}