Padding fix

This commit is contained in:
2020-08-16 12:26:10 +02:00
parent 9ebfef6c6e
commit 15b4bc7880
2 changed files with 7 additions and 7 deletions

View File

@@ -8,6 +8,7 @@ $-logo-height: 45px;
box-shadow: 0 0 2px $-light-brown;
grid-area: header;
background-color: white;
padding-left: 25px;
&__Navigation{
flex-grow: 2;
@@ -15,7 +16,6 @@ $-logo-height: 45px;
&__Logo {
height: $-logo-height;
margin: 25px;
object-fit:cover;
max-height: 100%;
width: 225px;
@@ -63,8 +63,8 @@ $-logo-height: 45px;
@media(max-width: $-viewport-toggle-sidebar){
.LP-Header{
padding-left: 40px;
width: calc(100% - 40px);
padding-left: 60px;
width: calc(100% - 60px);
position: fixed;
z-index: 10;
}