Make field input transparency consistent (#4828)

Minor fix until for the release 0.4.0 until we properly fix all input
background and backdrop-filters
This commit is contained in:
Charles Bochet 2024-04-04 20:51:41 +02:00 committed by GitHub
parent 499e1a09e3
commit e8c58ae541
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,6 @@ import { ThemeType } from './ThemeLight';
export const OVERLAY_BACKGROUND = (props: { theme: ThemeType }) => css`
backdrop-filter: blur(12px) saturate(200%) contrast(50%) brightness(130%);
background: ${props.theme.background.transparent.forBackdropFilter};
background: ${props.theme.background.transparent.secondary};
box-shadow: ${props.theme.boxShadow.strong};
`;