Fix .steps horizontal overflow on mobile (#2586)

This commit is contained in:
Vinay kumar Korakoppula
2026-07-30 18:26:02 +02:00
committed by GitHub
parent 634d059cc8
commit ef18be5abe
+11
View File
@@ -15,6 +15,17 @@
margin: 0;
list-style: none;
}
//
// Steps responsive (mobile)
//
@media (max-width: 576px) {
.steps {
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
}
@each $name, $color in $extra-colors {
.steps-#{$name} {