UX: Adjust width for topic notifications dropdown on mobile
Previously, the dropdown was set to 400px wide, which exceeds the available width on many mobile devices.
This commit is contained in:
parent
0b09f5299d
commit
8a0abafc9d
|
@ -4,6 +4,11 @@
|
|||
.select-kit-body {
|
||||
max-width: 400px;
|
||||
width: 400px;
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
max-width: 100%;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.select-kit-row {
|
||||
|
|
Loading…
Reference in New Issue