mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
32 lines
362 B
SCSS
32 lines
362 B
SCSS
$m: 'page';
|
|
|
|
.#{$m} {
|
|
padding-top: 50px;
|
|
@include mq($from: 1800px) {
|
|
padding-top: 30px;
|
|
}
|
|
@include mq($from: 2200px) {
|
|
padding-top: 0;
|
|
}
|
|
|
|
&--post {
|
|
@include clearfix();
|
|
}
|
|
&--home {
|
|
}
|
|
&--get-dash {
|
|
background-color: $color-gray-light;
|
|
}
|
|
&--participate {
|
|
}
|
|
|
|
&--blog {
|
|
|
|
}
|
|
&--wallets {
|
|
|
|
}
|
|
&--school {
|
|
background: $color-gray-light;
|
|
}
|
|
}
|