BookingModal: move extra beds+tags to right col, payment to full-width bottom; Calendar: fix today booking left edge fill

This commit is contained in:
2026-03-20 23:56:02 +03:00
parent 0464259273
commit d3581f27f2
2 changed files with 167 additions and 219 deletions

View File

@@ -121,7 +121,7 @@ export function BookingCalendar({ rooms, bookings, slug, onBookingCreate, onBook
if (rawColStart >= visibleDays || rawColEnd <= 0) return null
const INSET = Math.round(CELL_WIDTH / 3)
const isClippedLeft = rawColStart < 0
const isClippedLeft = rawColStart <= 0
const isClippedRight = rawColEnd > visibleDays
const colStart = Math.max(0, rawColStart)