style: Fix inconsistent indentation in SCSS files for clarity

This commit is contained in:
2025-04-05 19:54:25 -07:00
parent 806d3a318f
commit 388a4f1589
5 changed files with 203 additions and 205 deletions

View File

@@ -6,7 +6,7 @@
}
@mixin below-container-width {
@media screen and (max-width: $container-width-threshold){
@media screen and (max-width: $container-width-threshold) {
@content;
}
}
@@ -16,17 +16,17 @@
}
@mixin textual-input {
@include bordered-block;
box-sizing: border-box;
@include var(background-color, background-color);
@include var(color, text-color);
font-family: $font-body;
padding: $input-padding;
@include bordered-block;
box-sizing: border-box;
@include var(background-color, background-color);
@include var(color, text-color);
font-family: $font-body;
padding: $input-padding;
&:active, &:focus {
@include green-shadow;
border-color: $primary-color;
}
&:active, &:focus {
@include green-shadow;
border-color: $primary-color;
}
flex-grow: 1;
flex-grow: 1;
}