Skip to content

Commit 2ef8473

Browse files
committed
example styles
1 parent f2b0627 commit 2ef8473

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

packages/platform/examples/base/src/pages/availability.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ export default function Availability(props: { calUsername: string; calEmail: str
7373
},
7474
},
7575
dateOverrideClassNames: {
76-
container: "p-0",
76+
container: "p-4 bg-gray-900 rounded-md",
77+
title: "text-red-500 font-bold",
78+
description: "text-white",
79+
button: "text-black",
7780
},
7881
}}
7982
onFormStateChange={handleFormStateChange}

packages/platform/examples/base/src/pages/calendars.tsx

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,28 @@ export default function Calendars(props: { calUsername: string; calEmail: string
2222
},
2323
},
2424
selectedCalendarSettingsClassNames: {
25-
container: "bg-red-200 mx-5 mb-6",
25+
container: "mx-5 mb-6",
2626
header: {
27-
container: "bg-gray-200",
27+
container: "bg-gray-200 rounded-md",
2828
title: "text-green-500",
2929
description: "text-red-500",
3030
},
3131
noSelectedCalendarsMessage: "text-blue-500",
32+
selectedCalendarsListClassNames: {
33+
container: "bg-yellow-100",
34+
selectedCalendar: {
35+
container: "bg-yellow-200",
36+
header: {
37+
container: "bg-yellow-500",
38+
title: "text-green-500",
39+
description: "text-red-500",
40+
},
41+
body: {
42+
container: "bg-yellow-500",
43+
description: "text-red-500",
44+
},
45+
},
46+
},
3247
},
3348
}}
3449
/>

0 commit comments

Comments
 (0)