style(ui): replace dark mode opacity-based colors with explicit hex values
This commit is contained in:
@@ -6,7 +6,7 @@ const Breadcrumb = ({ items = [], className = '' }) => {
|
||||
return (
|
||||
<nav
|
||||
aria-label="Breadcrumb"
|
||||
className={`inline-flex self-start bg-white dark:bg-neutral-800/30 border border-neutral-200 dark:border-neutral-700/30 rounded-xl overflow-hidden ${className}`}
|
||||
className={`inline-flex self-start bg-white dark:bg-[#0B0B0B] border border-neutral-200 dark:border-[#1B1B1B] rounded-xl overflow-hidden ${className}`}
|
||||
>
|
||||
<ol className="flex items-center">
|
||||
{items.map((item, index) => (
|
||||
@@ -25,7 +25,7 @@ const Breadcrumb = ({ items = [], className = '' }) => {
|
||||
item.active
|
||||
? 'text-black dark:text-white cursor-default'
|
||||
: item.onClick
|
||||
? 'text-neutral-500 hover:text-neutral-700 dark:hover:text-neutral-300 hover:bg-neutral-50 dark:hover:bg-neutral-700/20 cursor-pointer'
|
||||
? 'text-neutral-500 hover:text-neutral-700 dark:hover:text-neutral-300 hover:bg-neutral-50 dark:hover:bg-neutral-950 cursor-pointer'
|
||||
: 'text-neutral-400 cursor-default',
|
||||
].filter(Boolean).join(' ')}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user