mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
ui: Make the set status modal mobile responsive.
The set status modal to add/remove/update user status was not visible properly on devices with a small width. This commit fixes the issue by adding appropriate media queries to the css to make the modal mobile responsive. Fixes part of #16817.
This commit is contained in:
parent
6b8f4782c4
commit
089af801fb
@ -7,10 +7,17 @@
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
background-color: hsl(0, 0%, 100%);
|
||||
|
||||
@media (max-width: 384px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
input.user_status {
|
||||
width: 336px;
|
||||
@media (max-width: 384px) {
|
||||
width: 94%;
|
||||
}
|
||||
}
|
||||
|
||||
.user-status-header {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user