@ticketboothapp/booking 1.2.32 → 1.2.33

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ticketboothapp/booking",
3
- "version": "1.2.32",
3
+ "version": "1.2.33",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -337,19 +337,6 @@
337
337
  padding-bottom: 0; /* No bottom padding - eliminates gap below calendar cells */
338
338
  }
339
339
 
340
- /* Admin capacity view: enforce a wider minimum per day; scroll horizontally if the container is narrow */
341
- @media (min-width: 640px) {
342
- .calendarGridInnerAdminWide {
343
- overflow-x: auto;
344
- -webkit-overflow-scrolling: touch;
345
- }
346
-
347
- .calendarHeaderRowAdminWide,
348
- .calendarDaysGridAdminWide {
349
- grid-template-columns: repeat(7, minmax(6.75rem, 1fr));
350
- }
351
- }
352
-
353
340
  .calendarHeaderRow {
354
341
  display: grid;
355
342
  grid-template-columns: repeat(7, 1fr);
@@ -376,6 +363,20 @@
376
363
  grid-template-columns: repeat(7, 1fr);
377
364
  }
378
365
 
366
+ /* Admin capacity: wider min column width — must come after base .calendarHeaderRow / .calendarDaysGrid
367
+ or those rules override equal-specificity .calendar*AdminWide (cascade bug). */
368
+ @media (min-width: 640px) {
369
+ .calendarGridInnerAdminWide {
370
+ overflow-x: auto;
371
+ -webkit-overflow-scrolling: touch;
372
+ }
373
+
374
+ .calendarHeaderRow.calendarHeaderRowAdminWide,
375
+ .calendarDaysGrid.calendarDaysGridAdminWide {
376
+ grid-template-columns: repeat(7, minmax(6.75rem, 1fr));
377
+ }
378
+ }
379
+
379
380
  /* Desktop: don't stretch every cell to the tallest day in the row (was huge empty space). */
380
381
  @media (min-width: 640px) {
381
382
  .calendarDaysGrid {