13 lines
269 B
SCSS
13 lines
269 B
SCSS
@import "stylesheets/breakpoint-xxl.scss";
|
|
|
|
// https://tetralogical.com/blog/2023/06/08/focus-in-view/
|
|
|
|
html,
|
|
body {
|
|
scroll-padding-top: 105px !important; // 88 + 8 + 8 + 1
|
|
|
|
@include breakpoint-xxl {
|
|
scroll-padding-top: 65px !important; // 48 + 8 + 8 + 1
|
|
}
|
|
}
|