chore: run stylelint on our css files

This commit is contained in:
Gabe Kangas
2023-06-20 20:58:00 -07:00
parent 8c968ff676
commit ccb9b5d075
37 changed files with 142 additions and 98 deletions
+5 -4
View File
@@ -4,21 +4,22 @@
align-items: center;
}
@mixin screen ($breakpoint) {
@mixin screen($breakpoint) {
@if $breakpoint == desktop {
@media only screen and (min-width: 768px) {
@media only screen and (width >= 768px) {
@content;
}
}
// tablet will also apply to mobile as there is no cut-off for min-width, however changing this now could break CSS all over the site.
@if $breakpoint == tablet {
@media only screen and (max-width: 768px) {
@media only screen and (width <= 768px) {
@content;
}
}
@if $breakpoint == mobile {
@media only screen and (max-width: 481px) {
@media only screen and (width <= 481px) {
@content;
}
}