Fix category selector overflow on mobile
The category selector tends to overflow on mobile due to width being declared as 500px, This commit changes that to max-width and adding width: 100% to make it scale to screen size.
Dieser Commit ist enthalten in:
Ursprung
794a8efdec
Commit
d829d46550
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen
|
@ -33,4 +33,9 @@ body.custom-wizard {
|
|||
margin-bottom: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.wizard-category-selector {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
|
|
Laden …
In neuem Issue referenzieren