1
0
Fork 0

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:
Bhanu 2023-01-23 16:50:30 +05:30 committet von GitHub
Ursprung 794a8efdec
Commit d829d46550
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -33,4 +33,9 @@ body.custom-wizard {
margin-bottom: 20px; margin-bottom: 20px;
width: 100%; width: 100%;
} }
.wizard-category-selector {
width: 100%;
max-width: 500px;
}
} }