Fix column header, make background the same color as foreground

This commit is contained in:
Alex Gleason 2025-01-24 19:49:41 -06:00
parent e43ca0cbb3
commit 3686b41ba5
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ const Column = forwardRef<HTMLDivElement, IColumn>((props, ref): JSX.Element =>
label={label}
backHref={backHref}
className={clsx('px-5 py-4', {
'sticky top-12 z-10 bg-white/90 dark:bg-primary-900/90 black:bg-black/90 backdrop-blur lg:top-16': !transparent,
'sticky top-12 z-20 bg-white/90 dark:bg-primary-900/90 black:bg-black/90 backdrop-blur lg:top-0': !transparent,
'-mb-4': !slim,
})}
action={action}

View File

@ -25,7 +25,7 @@ const SoapboxHead: React.FC<ISoapboxHead> = ({ children }) => {
const themeCss = generateThemeCss(demo ? normalizeSoapboxConfig({ brandColor: '#0482d8' }) : soapboxConfig);
const dsn = soapboxConfig.sentryDsn;
const bodyClass = clsx('h-full bg-white text-base black:bg-black dark:bg-gray-800', {
const bodyClass = clsx('h-full bg-white text-base black:bg-black dark:bg-primary-900', {
'no-reduce-motion': !reduceMotion,
'underline-links': underlineLinks,
'demetricator': demetricator,