Use grid layout instead of bootstrap columns

This commit is contained in:
Gabor PEK
2018-03-07 17:22:28 +01:00
parent e55248ab30
commit e1f0bdfb57
5 changed files with 26 additions and 21 deletions
+3 -3
View File
@@ -21,7 +21,7 @@ $nano: 0.125 * $space;
//
$tao-blue-500: #277EEC;
$font-size-base: 14px;
$font-size-h4: floor(($font-size-base * 1.2));
$font-size-h3: floor(($font-size-base * 1.3));
$tao-navbar-height: 67px;
@@ -31,7 +31,7 @@ $tao-navbar-height: 67px;
//
.tao-header-title {
color: $tao-blue-500;
font-size: $font-size-h4;
font-size: $font-size-h3;
}
.tao-navbar {
@@ -44,7 +44,7 @@ $tao-navbar-height: 67px;
.tao-grid-navbar {
display: grid;
grid-template-columns: 10fr 1fr 10fr;
grid-template-columns: 1fr 1fr;
grid-column-gap: 8px;
width: 100%;
}