File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -482,9 +482,50 @@ hr {
482
482
}
483
483
484
484
.ads {
485
+ display : flex ;
486
+ flex-flow : row wrap ;
487
+ align-items : center ;
488
+ justify-content : space-around ;
485
489
margin : $spacer-normal 0 ;
486
490
491
+ & .left {
492
+ justify-content : flex-start ;
493
+ }
494
+
487
495
@media print {
488
496
display : none ;
489
497
}
498
+
499
+ a {
500
+ text-decoration : underline ;
501
+ font-size : $font-size-smaller ;
502
+
503
+ @include themed {
504
+ color : t ($text-brighter );
505
+ }
506
+ }
507
+
508
+ & .buttons {
509
+ @media ($phone ) {
510
+ flex-direction : column ;
511
+ }
512
+ }
513
+
514
+ .banner {
515
+ margin : $spacer-normal 0 ;
516
+
517
+ & --desktop {
518
+ @media ($phone ) {
519
+ display : none ;
520
+ }
521
+ }
522
+
523
+ & --mobile {
524
+ display : none ;
525
+
526
+ @media ($phone ) {
527
+ display : block ;
528
+ }
529
+ }
530
+ }
490
531
}
Original file line number Diff line number Diff line change @@ -68,3 +68,8 @@ $text-links--dark: adjust-color(
68
68
/* Media queries */
69
69
$phone : " max-width: 684px" ;
70
70
$tablet : " max-width: 900px" ;
71
+
72
+ :root {
73
+ --phone : (#{$phone } );
74
+ --tablet : (#{$tablet } );
75
+ }
You can’t perform that action at this time.
0 commit comments