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; } }