@@ -149,9 +149,9 @@ section:last-child {
149149}
150150
151151.docs-logo {
152- @include display ( flex ) ;
153- @include align-items ( center ) ;
154- @include justify-content ( center ) ;
152+ display : flex ;
153+ align-items : center ;
154+ justify-content : center ;
155155 position : relative ;
156156 box-sizing : border-box ;
157157 height : 100% ;
@@ -178,9 +178,9 @@ section:last-child {
178178 height : 100% ;
179179
180180 .footer-logo-box {
181- @include display ( flex ) ;
182- @include align-items ( center ) ;
183- @include justify-content ( center ) ;
181+ display : flex ;
182+ align-items : center ;
183+ justify-content : center ;
184184 }
185185
186186 .powered-by ,
@@ -307,8 +307,8 @@ table {
307307/* -- -- -- -- -- -- -- -- -- -- -- -- -- */
308308/* example styling */
309309.example {
310- @include display ( flex ) ;
311- @include flex-direction ( column ) ;
310+ display : flex ;
311+ flex-direction : column ;
312312 @include justify-content (flex-start );
313313 box-sizing : border-box ;
314314 padding : 1.25em ;
@@ -351,10 +351,10 @@ table {
351351/* -- -- -- -- -- -- -- -- -- -- -- -- -- */
352352/* intro specific styling */
353353.hp-header {
354- @include display ( flex ) ;
355- @include align-items ( center ) ;
356- @include justify-content ( space-between ) ;
357- @include flex-direction ( row ) ;
354+ display : flex ;
355+ align-items : center ;
356+ justify-content : space-between ;
357+ flex-direction : row ;
358358 width : 100% ;
359359 background : $mainNavBg ;
360360
@@ -394,9 +394,9 @@ table {
394394 }
395395
396396 .intro-content.top {
397- @include display ( flex ) ;
398- @include align-items ( center ) ;
399- @include flex-direction ( row ) ;
397+ display : flex ;
398+ align-items : center ;
399+ flex-direction : row ;
400400 box-sizing : border-box ;
401401
402402 .hero-image {
@@ -418,8 +418,8 @@ table {
418418 }
419419
420420 .intro-content.bottom {
421- @include display ( flex ) ;
422- @include flex-direction ( row ) ;
421+ display : flex ;
422+ flex-direction : row ;
423423 box-sizing : border-box ;
424424
425425 .hero-block {
@@ -494,8 +494,8 @@ table {
494494
495495 .intro-block {
496496 .intro-content.top {
497- @include align-items ( flex-start ) ;
498- @include flex-direction ( column ) ;
497+ align-items : flex-start ;
498+ flex-direction : column ;
499499
500500 .hero-image {
501501 width : 50% ;
@@ -521,7 +521,7 @@ table {
521521 }
522522
523523 .intro-content.bottom {
524- @include flex-direction ( column ) ;
524+ flex-direction : column ;
525525
526526 .hero-block {
527527 width : 100% ;
@@ -541,7 +541,7 @@ table {
541541
542542 .docs-footer {
543543 .footer-logo-box {
544- @include flex-direction ( row ) ;
544+ flex-direction : row ;
545545 }
546546 }
547547}
@@ -557,9 +557,9 @@ table {
557557 }
558558
559559 .hp-header {
560- @include align-items ( flex-start ) ;
561- @include justify-content ( center ) ;
562- @include flex-direction ( column ) ;
560+ align-items : flex-start ;
561+ justify-content : center ;
562+ flex-direction : column ;
563563
564564 .docs-logo {
565565 display : none ;
@@ -568,7 +568,7 @@ table {
568568
569569 .docs-footer {
570570 .footer-logo-box {
571- @include flex-direction ( column ) ;
571+ flex-direction : column ;
572572 }
573573
574574 .powered-by ,
0 commit comments