mirror of https://github.com/zulip/zulip.git
streams: Fix width bug with stream creation form footer.
The footer was a few pixels short and would create a gap in the bottom right hand corner of the streams overlay when the stream creation flow is open.
This commit is contained in:
parent
1514ea9be6
commit
3c4900205c
|
@ -744,7 +744,7 @@ form#add_new_subscription {
|
|||
#subscription_overlay #stream-creation .modal-footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: calc(100% - 30px);
|
||||
width: calc(100% - 27px);
|
||||
}
|
||||
|
||||
#stream-creation .stream-creation-body {
|
||||
|
|
Loading…
Reference in New Issue