27 lines
378 B
SCSS
Vendored
27 lines
378 B
SCSS
Vendored
@use "../abstracts/mixin" as *;
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.site_container {
|
|
|
|
}
|
|
.body_container {
|
|
@include container;
|
|
padding: 67px 0;
|
|
background-color: #f9f9f9;
|
|
}
|
|
.header_container {
|
|
@include container;
|
|
}
|
|
.grey_background {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.content_container {
|
|
padding-right: 50px;
|
|
}
|
|
.sidebar {
|
|
width: CALC(300px + var(--bs-gutter-x));
|
|
}
|