feat: add background gradient on page wrapper shadow

This commit is contained in:
Ivana Andersson 2023-08-15 11:07:23 +03:00
parent 9cd6d121ba
commit 6813c625f2
1 changed files with 10 additions and 0 deletions

View File

@ -6,6 +6,16 @@
flex-wrap: wrap;
overflow: hidden;
}
.layout::after {
display: block;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(113, 64, 253, 0.15) 20%, rgba(255,255,255,0) 100%);
}
.layout-left {
flex: 0 0 55%;
max-width: 55%;