change styles for bg in header and home

This commit is contained in:
Kostya
2023-11-14 21:40:48 +03:00
parent 8315630f30
commit a02662de4d
2 changed files with 35 additions and 6 deletions

View File

@@ -24,5 +24,34 @@ export default {
.home {
margin-top: 60px;
padding: 20px;
width: 100%;
position: relative;
top: 0;
z-index: -1;
overflow: hidden;
}
.home::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
border-radius: 40px;
background: #DF85FF99;
filter: blur(405px);
z-index: -1;
}
.home::after {
content: '';
position: absolute;
top: 0%;
left: 50%;
width: 100%;
height: 50%;
border-radius: 40px;
background: #7000FF;
filter: blur(465px);
z-index: -1;
}
</style>