31 lines
318 B
SCSS
31 lines
318 B
SCSS
@import 'variables';
|
|
@import '_mixins';
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
scroll-padding-top: 105px;
|
|
}
|
|
|
|
body {
|
|
&.fixed {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
p {
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
strong {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.main-page {
|
|
padding-top: 0px;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.breadcrumbs {
|
|
margin: 60px 0 10px;
|
|
}
|