File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,8 @@ export const FloatPopover: FC<
234
234
aria-modal = "true"
235
235
className = { clsxm (
236
236
'!shadow-out-sm focus:!shadow-out-sm focus-visible:!shadow-out-sm' ,
237
- 'bg-base-100/98 rounded-xl border border-zinc-400/20 p-4 shadow-lg outline-none backdrop-blur-lg dark:border-zinc-500/30' ,
237
+ 'rounded-xl border border-zinc-400/20 p-4 shadow-lg outline-none backdrop-blur-lg dark:border-zinc-500/30' ,
238
+ 'bg-slate-50/80 dark:bg-neutral-900/80' ,
238
239
239
240
headless && styles [ 'headless' ] ,
240
241
animate && styles [ 'animate' ] ,
Original file line number Diff line number Diff line change @@ -94,7 +94,10 @@ const XLogInfoBase: FC<{
94
94
< div
95
95
role = "button"
96
96
tabIndex = { 0 }
97
- className = "-mx-2 flex w-[100%+0.5rem] items-center justify-between rounded-lg p-2 text-left transition-colors duration-300 hover:bg-zinc-100 dark:hover:bg-slate-800 md:rounded-xl"
97
+ className = { clsx (
98
+ '-mx-2 flex w-[100%+0.5rem] items-center justify-between rounded-lg p-2 text-left transition-colors duration-300 md:rounded-xl' ,
99
+ 'hover:bg-zinc-100 dark:hover:bg-neutral-800' ,
100
+ ) }
98
101
onClick = { ( ) => {
99
102
setCollapse ( ( c ) => ! c )
100
103
} }
You can’t perform that action at this time.
0 commit comments