Added styling to calendar page

This commit was merged in pull request #59.
This commit is contained in:
victorAnumudu
2023-02-16 16:45:48 +01:00
parent 65a531922f
commit 3fe29accbf
2 changed files with 11 additions and 4 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ export default function CalendarTable({ className }) {
return (
<div
className={`update-table w-full p-8 bg-white dark:bg-dark-white overflow-hidden rounded-2xl section-shadow min-h-[620px] ${
className={`update-table w-full p-8 bg-white dark:bg-dark-white overflow-hidden rounded-2xl section-shadow min-h-[800px] ${
className || ""
}`}
>
@@ -41,4 +41,4 @@ export default function CalendarTable({ className }) {
</div>
);
}
}