File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed
packages/platform/examples/base/src/pages Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,10 @@ export default function Availability(props: { calUsername: string; calEmail: str
73
73
} ,
74
74
} ,
75
75
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" ,
77
80
} ,
78
81
} }
79
82
onFormStateChange = { handleFormStateChange }
Original file line number Diff line number Diff line change @@ -22,13 +22,28 @@ export default function Calendars(props: { calUsername: string; calEmail: string
22
22
} ,
23
23
} ,
24
24
selectedCalendarSettingsClassNames : {
25
- container : "bg-red-200 mx-5 mb-6" ,
25
+ container : "mx-5 mb-6" ,
26
26
header : {
27
- container : "bg-gray-200" ,
27
+ container : "bg-gray-200 rounded-md " ,
28
28
title : "text-green-500" ,
29
29
description : "text-red-500" ,
30
30
} ,
31
31
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
+ } ,
32
47
} ,
33
48
} }
34
49
/>
You can’t perform that action at this time.
0 commit comments