aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/utilities/_position.scss8
1 files changed, 5 insertions, 3 deletions
diff --git a/scss/utilities/_position.scss b/scss/utilities/_position.scss
index 2cf08bfa0..74b8d39e7 100644
--- a/scss/utilities/_position.scss
+++ b/scss/utilities/_position.scss
@@ -17,7 +17,9 @@
}
.sticky-top {
- position: sticky;
- top: 0;
- z-index: $zindex-sticky;
+ @supports (position: sticky) {
+ position: sticky;
+ top: 0;
+ z-index: $zindex-sticky;
+ }
}