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:
@ -4,6 +4,6 @@ import { ThemeType } from './ThemeLight';
|
|||||||
|
|
||||||
export const OVERLAY_BACKGROUND = (props: { theme: ThemeType }) => css`
|
export const OVERLAY_BACKGROUND = (props: { theme: ThemeType }) => css`
|
||||||
backdrop-filter: blur(12px) saturate(200%) contrast(50%) brightness(130%);
|
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};
|
box-shadow: ${props.theme.boxShadow.strong};
|
||||||
`;
|
`;
|
||||||
|
|||||||
Reference in New Issue
Block a user