mirror of https://github.com/zulip/zulip.git
timepicker: Fix hours and minutes input getting squeeze in safari.
This issue is probably with the upstream bug in `flatpickr` but we can fix it for us by specifying minimum height to the input. Fixes #22698
This commit is contained in:
parent
16829bd84b
commit
39a3944951
|
@ -2721,6 +2721,7 @@ div.topic_edit_spinner .loading_indicator_spinner {
|
|||
|
||||
.flatpickr-time input {
|
||||
margin: 0 5px;
|
||||
min-height: 30px;
|
||||
}
|
||||
|
||||
.flatpickr-confirm {
|
||||
|
|
Loading…
Reference in New Issue