File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/features/events/components Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const EventDetail: FC<{ params: { id: string } }> = ({ params }) => {
39
39
className = "rounded-lg"
40
40
/>
41
41
) : (
42
- < Skeleton className = "w-full h-24 sm:h-96 rounded-lg " />
42
+ < Skeleton className = "w-full h-24 rounded-lg sm:h-96" />
43
43
) }
44
44
</ div >
45
45
< BreadCrumbLink />
@@ -58,18 +58,18 @@ const EventDetail: FC<{ params: { id: string } }> = ({ params }) => {
58
58
</ div >
59
59
</ div >
60
60
</ div >
61
- < div className = "fixed bottom-0 left-0 right-0 flex items-center self-start justify-between w-full gap-4 bg-slate-950 md:bg-transparent lg:flex-col lg:justify-start lg:sticky lg:top-24 lg:px-4" >
61
+ < div className = "fixed bottom-0 left-0 right-0 flex items-center self-start justify-between w-full gap-4 rounded-lg bg-white dark: bg-slate-950 md:bg-transparent lg:flex-col lg:justify-start lg:sticky lg:top-24 lg:px-4" >
62
62
< div className = "hidden w-full p-4 space-y-6 border rounded-lg lg:block border-slate-400 dark:border-slate-600" >
63
63
{ event ? < EventInfo event = { event } /> : < Skeleton className = "w-full h-4 rounded-lg" /> }
64
64
</ div >
65
65
< div className = "flex flex-col w-full gap-4 px-6 py-4 border-t rounded-lg sm:border border-slate-400 dark:border-slate-600" >
66
66
< div className = "flex items-center justify-between w-full" >
67
- < span className = "text-xs sm:text-sm text-slate-700 dark:text-slate-300 " >
67
+ < span className = "font-semibold text-xs sm:text-sm dark:text-slate-200 " >
68
68
{ t ( "EventDetail.price-title" ) }
69
69
</ span >
70
70
< p className = "text-sm font-bold dark:text-slate-200" > { useFormatPrice ( 1000 ) } </ p >
71
71
</ div >
72
- < Button className = "w-full dark:bg-slate-200" > { t ( "EventDetail.register-button" ) } </ Button >
72
+ < Button className = "w-full font-bold dark:bg-slate-200" > { t ( "EventDetail.register-button" ) } </ Button >
73
73
</ div >
74
74
</ div >
75
75
</ div >
You can’t perform that action at this time.
0 commit comments