2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-10 21:01:33 +08:00

FIX: ensures local-dates modal is not taking full height on mobile (#7772)

This commit is contained in:
Joffrey JAFFEUX 2019-06-16 08:48:07 +02:00 committed by GitHub
parent 48b9e0d749
commit 32cd9ba59b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -297,14 +297,16 @@
}
html:not(.mobile-view) {
.discourse-local-dates-create-modal.modal-body {
.fixed-modal .discourse-local-dates-create-modal.modal-body {
width: 600px;
max-height: 400px;
max-height: 400px !important;
}
}
html.mobile-view {
.discourse-local-dates-create-modal.modal-body {
.fixed-modal .discourse-local-dates-create-modal.modal-body {
max-height: 400px !important;
.date-time-configuration {
flex-direction: column;
}