Fix column header, make background the same color as foreground
This commit is contained in:
parent
e43ca0cbb3
commit
3686b41ba5
|
@ -90,7 +90,7 @@ const Column = forwardRef<HTMLDivElement, IColumn>((props, ref): JSX.Element =>
|
||||||
label={label}
|
label={label}
|
||||||
backHref={backHref}
|
backHref={backHref}
|
||||||
className={clsx('px-5 py-4', {
|
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,
|
'-mb-4': !slim,
|
||||||
})}
|
})}
|
||||||
action={action}
|
action={action}
|
||||||
|
|
|
@ -25,7 +25,7 @@ const SoapboxHead: React.FC<ISoapboxHead> = ({ children }) => {
|
||||||
const themeCss = generateThemeCss(demo ? normalizeSoapboxConfig({ brandColor: '#0482d8' }) : soapboxConfig);
|
const themeCss = generateThemeCss(demo ? normalizeSoapboxConfig({ brandColor: '#0482d8' }) : soapboxConfig);
|
||||||
const dsn = soapboxConfig.sentryDsn;
|
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,
|
'no-reduce-motion': !reduceMotion,
|
||||||
'underline-links': underlineLinks,
|
'underline-links': underlineLinks,
|
||||||
'demetricator': demetricator,
|
'demetricator': demetricator,
|
||||||
|
|
Loading…
Reference in New Issue