From e8c58ae5418704467914056233bd256007231b18 Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Thu, 4 Apr 2024 20:51:41 +0200 Subject: [PATCH] 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 --- .../src/modules/ui/theme/constants/OverlayBackground.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/theme/constants/OverlayBackground.ts b/packages/twenty-front/src/modules/ui/theme/constants/OverlayBackground.ts index 25bcbe449..083133298 100644 --- a/packages/twenty-front/src/modules/ui/theme/constants/OverlayBackground.ts +++ b/packages/twenty-front/src/modules/ui/theme/constants/OverlayBackground.ts @@ -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}; `;