Skip to content

Commit 29b9cc8

Browse files
committed
fix: color
Signed-off-by: Innei <[email protected]>
1 parent 7cdc0e7 commit 29b9cc8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/components/ui/float-popover/FloatPopover.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,8 @@ export const FloatPopover: FC<
234234
aria-modal="true"
235235
className={clsxm(
236236
'!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',
238239

239240
headless && styles['headless'],
240241
animate && styles['animate'],

src/components/widgets/xlog/XLogInfo.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ const XLogInfoBase: FC<{
9494
<div
9595
role="button"
9696
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+
)}
98101
onClick={() => {
99102
setCollapse((c) => !c)
100103
}}

0 commit comments

Comments
 (0)