Skip to content

Commit

Permalink
chore: fix dark bg for admonition
Browse files Browse the repository at this point in the history
  • Loading branch information
nermalcat69 committed Oct 7, 2024
1 parent 1504f70 commit 7c2491e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/src/theme/Admonition/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function AdmonitionContainer({
'p-1 border border-solid rounded shadow-none',
(type === 'note' || type === 'info' || type === 'tip') &&
(type === 'tip'
? 'bg-blue-50 border-blue-100 dark:bg-neutral-800 dark:border-slate-800'
? 'bg-blue-50 border-blue-100 dark:bg-[#1D1D20] dark:border-slate-800'
: 'bg-medusa-tag-neutral-bg border-medusa-tag-neutral-border'),
(type === 'danger' || type === 'warning' || type === 'caution') &&
'bg-medusa-tag-red-bg border-medusa-tag-red-border',
Expand Down

0 comments on commit 7c2491e

Please sign in to comment.