mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-14 08:15:26 +00:00
33 lines
722 B
SCSS
33 lines
722 B
SCSS
|
|
@font-face {
|
|
font-family: 'Inconsolata';
|
|
src: url('./assets/fonts/Inconsolata-Light.ttf');
|
|
}
|
|
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
transition: all 1s;
|
|
}
|
|
|
|
/* Default app font face */
|
|
body, div, p, a, span, label, input, button {
|
|
font-family: 'Inconsolata', sans-serif;
|
|
}
|
|
|
|
/* Headings font face */
|
|
h1, h2, h3, h4, h5 {
|
|
font-family: 'Inconsolata', sans-serif;
|
|
}
|
|
|
|
/* Overiding styles for the global toast component */
|
|
.toast-message {
|
|
background: var(--toast-background) !important;
|
|
color: var(--toast-color) !important;
|
|
border: 1px solid var(--toast-color) !important;
|
|
border-radius: var(--curve-factor) !important;
|
|
font-size: 1.25rem !important;
|
|
}
|
|
|
|
|