Added scrollbehaviour.

main
BurnyLlama 2023-03-29 10:52:58 +02:00
parent 7d1b9a7789
commit c3c15ed2ce
2 changed files with 7 additions and 1 deletions

View File

@ -1,2 +1,6 @@
// Select the font to be used for most of the text.
// $font-body-text: 'Manrope', sans-serif;
$font-body-text: 'Alegreya', serif;
$font-body-text: 'Alegreya', serif;
// Select the scroll behavior. [ smooth | auto ]
$scroll-behaviour: smooth;

View File

@ -1,4 +1,5 @@
@use "palette";
@use "settings";
:root,
*,
@ -8,6 +9,7 @@
padding: 0;
box-sizing: border-box;
line-height: 1.5;
scroll-behavior: settings.$scroll-behaviour;
}
:root,