Scale header by 50%
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luca 2022-07-10 17:49:56 +02:00
parent 89ab431834
commit 28adbd55fc
1 changed files with 4 additions and 4 deletions

View File

@ -69,18 +69,18 @@ header {
} }
@media screen and (min-width: $small) { @media screen and (min-width: $small) {
margin-top: 300px; margin-top: 150px;
padding-top: 0.5rem; padding-top: 0.5rem;
&::before { &::before {
background: url(/header.svg) 50% 0% no-repeat; background: url(/header.svg) 50% 0% / contain no-repeat;
content: ''; content: '';
display: block; display: block;
height: 300px; height: 150px;
left: 0; left: 0;
position: absolute; position: absolute;
top: 0; top: 0;
width: 100vw; width: 100%;
} }
} }
} }