Skip to content

Commit

Permalink
Merge pull request #133 from vuejs-jp/fix/form-page-section-background
Browse files Browse the repository at this point in the history
fix: form page section background
  • Loading branch information
jiyuujin authored May 1, 2024
2 parents e2b4820 + 25f75c3 commit a5e33e6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions apps/web/app/components/FormPageSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,19 +102,20 @@ const updateDetail = (e: any) => {
section {
position: relative;
padding: 120px 20px 120px;
background-color: #fff;
background-image: linear-gradient(#fff, #ebf0f5);
&::before {
content: "";
position: absolute;
display: block;
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;
}
}
Expand Down

0 comments on commit a5e33e6

Please sign in to comment.