hacker.tours-website/themes/zen/assets/sass/base/document/_document.scss

19 lines
472 B
SCSS
Raw Permalink Normal View History

2024-06-13 22:14:05 +02:00
// Document
html {
// Change the default font family in all browsers.
font-family: var(--ff-body);
// Set base font size in percent.
font-size: calc(#{$base-font-size} / 16 * 100%);
// Correct the line height in all browsers.
line-height: $base-line-height;
// Set text colour.
color: var(--color-text);
}
body {
// Output a horizontal grid to help with debugging typography. The
// $debug variable will toggle its output.
@include debug-grid();
}