New booking panel

This commit is contained in:
Jose Selesan
2026-05-05 10:16:38 -03:00
parent 546a020003
commit c089215835
19 changed files with 1991 additions and 1072 deletions

View File

@@ -215,4 +215,33 @@ body,
[role="button"]:not(:disabled) {
cursor: pointer;
}
}
}
@layer utilities {
.booking-scrollbar {
scrollbar-color: oklch(0.67 0.21 158 / 62%) oklch(1 0 0 / 8%);
scrollbar-width: thin;
}
.booking-scrollbar::-webkit-scrollbar {
height: 12px;
}
.booking-scrollbar::-webkit-scrollbar-track {
background: oklch(1 0 0 / 6%);
border-radius: 999px;
}
.booking-scrollbar::-webkit-scrollbar-thumb {
background: linear-gradient(90deg, oklch(0.67 0.21 158 / 72%), oklch(0.61 0.2 255 / 58%));
border: 3px solid transparent;
border-radius: 999px;
background-clip: padding-box;
}
.booking-scrollbar::-webkit-scrollbar-thumb:hover {
background: linear-gradient(90deg, oklch(0.67 0.21 158 / 88%), oklch(0.61 0.2 255 / 72%));
border: 3px solid transparent;
background-clip: padding-box;
}
}