Book form: reduce font size for dates on mobile

This commit is contained in:
2026-03-09 13:25:41 +01:00
parent ce8145a42e
commit 8290f77889

View File

@@ -39,4 +39,13 @@ const today = new Date().toISOString().slice(0, 10)
font-size: 26px;
border-radius: 5px;
}
@media (max-width: 1024px) {
.datelabel {
font-size: 18px;
}
.datepicker {
font-size: 18px;
}
}
</style>