Skip to content

Commit

Permalink
fix: color
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <tukon479@gmail.com>
  • Loading branch information
Innei committed Jun 18, 2023
1 parent 7cdc0e7 commit 29b9cc8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/ui/float-popover/FloatPopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ export const FloatPopover: FC<
aria-modal="true"
className={clsxm(
'!shadow-out-sm focus:!shadow-out-sm focus-visible:!shadow-out-sm',
'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',
'rounded-xl border border-zinc-400/20 p-4 shadow-lg outline-none backdrop-blur-lg dark:border-zinc-500/30',
'bg-slate-50/80 dark:bg-neutral-900/80',

headless && styles['headless'],
animate && styles['animate'],
Expand Down
5 changes: 4 additions & 1 deletion src/components/widgets/xlog/XLogInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ const XLogInfoBase: FC<{
<div
role="button"
tabIndex={0}
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"
className={clsx(
'-mx-2 flex w-[100%+0.5rem] items-center justify-between rounded-lg p-2 text-left transition-colors duration-300 md:rounded-xl',
'hover:bg-zinc-100 dark:hover:bg-neutral-800',
)}
onClick={() => {
setCollapse((c) => !c)
}}
Expand Down

0 comments on commit 29b9cc8

Please sign in to comment.