style(ui): replace dark mode opacity-based colors with explicit hex values
This commit is contained in:
@@ -73,7 +73,7 @@ const Modal = ({
|
||||
<Dialog.Panel
|
||||
className={`
|
||||
w-full ${sizeClasses[size]}
|
||||
bg-white dark:bg-neutral-900
|
||||
bg-white dark:bg-[#0B0B0B]
|
||||
border border-neutral-200 dark:border-neutral-800
|
||||
rounded-lg
|
||||
shadow-xl
|
||||
@@ -109,7 +109,7 @@ const Modal = ({
|
||||
|
||||
{/* Footer */}
|
||||
{resolvedFooter && (
|
||||
<div className="px-4 py-3 border-t border-neutral-200 dark:border-neutral-800 bg-neutral-50 dark:bg-neutral-800/30">
|
||||
<div className="px-4 py-3 border-t border-neutral-200 dark:border-neutral-800 bg-neutral-50 dark:bg-[#0B0B0B]">
|
||||
{resolvedFooter}
|
||||
</div>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user