23 lines
347 B
SCSS
23 lines
347 B
SCSS
@import "../../style/vars";
|
|
@import "../../style/mixins";
|
|
|
|
.background {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-evenly;
|
|
margin-top: -20vh;
|
|
width: 400%;
|
|
z-index: -1;
|
|
|
|
div {
|
|
border-radius: 10000px;
|
|
margin: 10vh 10vw;
|
|
|
|
&.gap {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
}
|