@ticketboothapp/booking 1.2.35 → 1.2.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -388,6 +388,11 @@
|
|
|
388
388
|
.calendarDaysGrid {
|
|
389
389
|
align-items: start;
|
|
390
390
|
}
|
|
391
|
+
|
|
392
|
+
/* Admin capacity mode: keep all days in a row equal height (including empty days like leading/trailing month dates). */
|
|
393
|
+
.calendarDaysGrid.calendarDaysGridAdminWide {
|
|
394
|
+
align-items: stretch;
|
|
395
|
+
}
|
|
391
396
|
}
|
|
392
397
|
|
|
393
398
|
/* Mobile: rows size to content to eliminate bottom gap */
|
|
@@ -438,6 +443,12 @@
|
|
|
438
443
|
justify-content: flex-end;
|
|
439
444
|
padding-bottom: 0.125rem;
|
|
440
445
|
}
|
|
446
|
+
|
|
447
|
+
/* Admin capacity mode: with stretched row heights, bottom-pinning creates excessive top whitespace. */
|
|
448
|
+
.calendar.calendarAdminMode .calendarDayCellInner:not(.calendarDayCellInnerMobile) {
|
|
449
|
+
justify-content: center;
|
|
450
|
+
padding-bottom: 0;
|
|
451
|
+
}
|
|
441
452
|
}
|
|
442
453
|
.calendar .calendarDayCell.calendarDayCellMobile .calendarDayCellInnerMobile,
|
|
443
454
|
.calendar .calendarDayCell.calendarDayCellMobileTall .calendarDayCellInnerMobile {
|