From 25f75c35b4965183ba607eaf1c524e73753640a1 Mon Sep 17 00:00:00 2001 From: totocalcio Date: Tue, 30 Apr 2024 23:00:40 +0900 Subject: [PATCH] fix: form page section background --- apps/web/app/components/FormPageSection.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/web/app/components/FormPageSection.vue b/apps/web/app/components/FormPageSection.vue index 14a5fa7d..9b102bc2 100644 --- a/apps/web/app/components/FormPageSection.vue +++ b/apps/web/app/components/FormPageSection.vue @@ -102,7 +102,7 @@ const updateDetail = (e: any) => { section { position: relative; padding: 120px 20px 120px; - background-color: #fff; + background-image: linear-gradient(#fff, #ebf0f5); &::before { content: ""; position: absolute; @@ -110,11 +110,12 @@ section { inset: 0; width: 100%; height: 100%; - background-image: url('/form-bg.png'), linear-gradient(#fff, #ebf0f5); + background-image: url('/form-bg.png'); background-size: auto; background-repeat: repeat; background-position: top left; - background-blend-mode: soft-light; + opacity: 0.8; + mix-blend-mode: overlay; } }