Merge branch 'main' into katt/cal-620-edge-fns

katt/cal-620-edge-fns
kodiakhq[bot] 2021-12-06 11:37:57 +00:00 committed by GitHub
commit 5f2aa280f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ const AvailableTimes: FC<AvailableTimesProps> = ({
const basePath = useRouterBasePath();
return (
<div className="mt-8 text-center sm:pl-4 sm:mt-0 sm:w-1/3 md:-mb-5">
<div className="flex flex-col mt-8 text-center sm:pl-4 sm:mt-0 sm:w-1/3 md:-mb-5">
<div className="mb-4 text-lg font-light text-left text-gray-600">
<span className="w-1/2 text-gray-600 dark:text-white">
<strong>{t(date.format("dddd").toLowerCase())}</strong>
@ -74,7 +74,7 @@ const AvailableTimes: FC<AvailableTimesProps> = ({
</span>
</span>
</div>
<div className="md:max-h-[364px] overflow-y-auto">
<div className="flex-grow md:h-[364px] overflow-y-auto">
{!loading &&
slots?.length > 0 &&
slots.map((slot) => {