tehnicni-app/client/src/styles.scss
Gal Podlipnik fd276b2c07 theme
2025-07-14 20:40:45 +02:00

29 lines
567 B
SCSS

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
html,
body {
height: 100%;
max-width: 100vw;
}
body {
margin: 0;
background-color: #fafafa;
color: rgba(0, 0, 0, 0.87);
transition: background-color 0.3s ease, color 0.3s ease;
}
body.dark-theme {
background-color: #303030;
color: rgba(255, 255, 255, 0.87);
}
.container {
margin-bottom: 16px;
transition: background-color 0.3s ease, color 0.3s ease;
}
body.dark-theme .mat-mdc-card {
--mdc-elevated-card-container-color: #424242;
color: rgba(255, 255, 255, 0.87);
}