Skip to content

Commit

Permalink
fix: bg 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 17, 2023
1 parent 9e6cb36 commit c9c678d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/notes/Paper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const Paper: Component = ({ children }) => {
return (
<main
className={clsx(
'relative bg-base-100 md:col-start-1 lg:col-auto',
'relative bg-slate-50 dark:bg-zinc-900 md:col-start-1 lg:col-auto',
'-m-4 p-[2rem_1rem] lg:m-0 lg:p-[30px_45px]',
'rounded-[0_6px_6px_0] border border-[#bbb3] shadow-sm dark:shadow-[#333]',
'note-layout-main',
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/float-popover/FloatPopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const FloatPopover: FC<
role="dialog"
aria-modal="true"
className={clsxm(
'bg-base-100 !shadow-out-sm focus:!shadow-out-sm focus-visible:!shadow-out-sm',
'!shadow-out-sm focus:!shadow-out-sm focus-visible:!shadow-out-sm',
'rounded-xl border border-zinc-400/20 bg-base-100/80 p-4 shadow-lg outline-none backdrop-blur-lg dark:border-zinc-500/30',

headless && styles['headless'],
Expand Down
5 changes: 5 additions & 0 deletions src/styles/tailwindcss.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default resolveConfig({

neutral: UIKitColors.grey3.light,

'base-100': '#F9FDFD',
// 'base-100': '#eeeeee',

'base-content': UIKitColors.label.primary.light,

Expand Down

0 comments on commit c9c678d

Please sign in to comment.