glowing-fiesta/app/assets/scss/layout/_core.scss
Liviu Burcusel d1967f718e
Added default layout to project
* Added default layout for the site

* App is in light mode by default.

* App is in light mode by default.
2025-11-12 12:50:56 +01:00

24 lines
396 B
SCSS

html {
height: 100%;
font-size: 14px;
line-height: 1.2;
}
body {
font-family: Ubuntu, Arial, Helvetica, sans-serif;
color: var(--text-color);
background-color: var(--surface-ground);
margin: 0;
padding: 0;
min-height: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
}
.layout-wrapper {
min-height: 100vh;
}