Use 1 column layout for form ul on narrow widths (#32112)

This commit is contained in:
Matt Jankowski 2024-09-26 15:26:40 -04:00 committed by GitHub
parent 89c39e7826
commit 106b22bd2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -312,6 +312,10 @@ code {
ul {
columns: 2;
@media screen and (max-width: $mobile-breakpoint) {
columns: 1;
}
}
}