discourse/app/assets/stylesheets/mobile/modal-overrides.scss
Penar Musaraj 9b1c6f8384
FIX: remove redundant body scroll lock (#29395)
PR #26784 adds the scroll lock in the modal which renders this second scroll lock for SK component redundant. Having it there in fact causes issues on iPads, where it isn't necessary.
2024-10-24 13:41:08 -04:00

27 lines
516 B
SCSS

.d-modal.discourse-local-dates-create-modal {
.date-time-configuration {
flex-direction: column;
gap: 0.5em;
}
.calendar-date-time-input {
width: 100%;
margin: 0 0 1rem 0;
}
.picker-panel {
//mysteriously needed to prevent it from overlapping the timezone-input
position: relative;
z-index: 0;
}
.pika-single {
justify-content: center;
}
}
.d-modal.bookmark-reminder-modal {
.d-modal__container {
min-height: calc(var(--composer-vh, var(--1dvh)) * 85);
}
}