2024-12-18 13:54:40 +01:00
|
|
|
@use '@angular/material' as mat;
|
|
|
|
|
2024-12-19 15:31:53 +01:00
|
|
|
html,
|
|
|
|
body {
|
2024-12-18 11:59:52 +01:00
|
|
|
height: 100%;
|
2025-01-09 01:23:36 +01:00
|
|
|
min-height: 100%;
|
2024-12-18 11:59:52 +01:00
|
|
|
margin: 0;
|
2024-12-19 21:55:15 +01:00
|
|
|
|
2024-12-18 13:54:40 +01:00
|
|
|
background: var(--mat-sys-surface);
|
|
|
|
color: var(--mat-sys-on-surface);
|
2024-12-19 21:55:15 +01:00
|
|
|
|
|
|
|
--mat-sys-primary-overlay: color-mix(in srgb, var(--mat-sys-primary) 10%, transparent);
|
|
|
|
|
|
|
|
color-scheme: light dark;
|
|
|
|
font-family: var(--mat-sys-label-medium-font);
|
|
|
|
|
|
|
|
@include mat.theme((color: mat.$azure-palette,
|
|
|
|
typography: Roboto,
|
|
|
|
density: 0));
|
|
|
|
|
2024-12-18 11:59:52 +01:00
|
|
|
}
|
2025-01-09 01:23:36 +01:00
|
|
|
|
|
|
|
app-root {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2025-01-09 03:46:35 +01:00
|
|
|
|
|
|
|
button {
|
|
|
|
&.abort, &.error, &.warn {
|
|
|
|
@include mat.button-overrides((
|
|
|
|
text-label-text-color: var(--mat-sys-error),
|
|
|
|
text-ripple-color: var(--mat-sys-error),
|
|
|
|
text-state-layer-color: var(--mat-sys-error),
|
|
|
|
filled-label-text-color: var(--mat-sys-on-error),
|
|
|
|
filled-container-color: var(--mat-sys-error),
|
|
|
|
filled-ripple-color: var(--mat-sys-on-error),
|
|
|
|
filled-state-layer-color: var(--mat-sys-on-error),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|