Logo is aligned to the left in the header, but still using grid layout

This commit is contained in:
Gabor PEK
2018-03-07 17:22:28 +01:00
parent 87fd540074
commit b219c29883
2 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -25,6 +25,7 @@ $font-size-h3: floor(($font-size-base * 1.3));
$tao-navbar-height: 67px;
$company-logo-width: 130px;
//
// Classes
@@ -44,14 +45,14 @@ $tao-navbar-height: 67px;
.tao-grid-navbar {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-columns: $company-logo-width 1fr;
grid-column-gap: 8px;
width: 100%;
}
.tao-company-logo {
display: block;
width: 130px;
width: $company-logo-width;
}
.tao-company-logo-mobile {