fix: removing '-1 +' from media queries (#1727)

This commit is contained in:
jacobo-dominguez-wgu
2025-06-04 17:27:04 -06:00
committed by GitHub
parent d1dede568e
commit 7edac93752
4 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
#course-sidebar {
@media (max-width: -1 + map-get($grid-breakpoints, "lg")) {
@media (max-width: map-get($grid-breakpoints, "lg")) {
overflow-y: scroll;
padding: 0 .625rem !important;
}

View File

@@ -66,7 +66,7 @@
border-radius: 0;
padding: map-get($spacers, 3\.5) map-get($spacers, 4) map-get($spacers, 3\.5) map-get($spacers, 5);
@media (max-width: -1 + map-get($grid-breakpoints, "sm")) {
@media (max-width: map-get($grid-breakpoints, "sm")) {
padding-left: map-get($spacers, 4);
}
@@ -90,7 +90,7 @@
ol li > a {
padding: map-get($spacers, 3\.5) map-get($spacers, 4) map-get($spacers, 3\.5) map-get($spacers, 5\.5);
@media (max-width: -1 + map-get($grid-breakpoints, "sm")) {
@media (max-width: map-get($grid-breakpoints, "sm")) {
padding-left: map-get($spacers, 4\.5);
}

View File

@@ -1,5 +1,5 @@
.discussions-sidebar-frame {
@media (max-width: -1 + map-get($grid-breakpoints, "xl")) {
@media (max-width: map-get($grid-breakpoints, "xl")) {
max-height: calc(100vh - 65px);
}
}