Files
nhgooi.nl/resources/assets/sass/components/_page.scss
Jorit Tijsen 1d94e7da7f Add some variables to the scss files
Use the period API call for the program schema
2024-03-20 17:54:10 +01:00

27 lines
463 B
SCSS
Vendored

@use "../abstracts/mixin" as *;
@use "../abstracts/variables" as *;
.page_container {
@include container;
background-color: #fff;
padding: 20px;
@media (min-width: 768px) {
width: CALC(100% - 270px);
padding: 32px 135px;
}
}
.page_body {
font-family: Nunito, serif;
font-size: 15px;
line-height: 1.6;
color: $text-dark-color;
}
.action_button {
text-decoration: none;
color: $text-dark-color;
.fa {
margin-right: 10px;
}
}