Ticket #4491: 4491.patch
File 4491.patch, 1.4 KB (added by , 6 years ago) |
---|
-
archive.php
32 32 33 33 <?php endwhile; ?> 34 34 35 <div class="archive-pagination">36 <?php posts_nav_link(); ?>37 </div>38 35 </div> 36 37 <div class="archive-pagination"> 38 <?php posts_nav_link(); ?> 39 </div> 39 40 </main> 40 41 41 42 <?php -
sass/site/_bbpress.scss
13 13 14 14 .three-up { //3-columns section 15 15 16 @extend .clear; 16 &:not(.helphub-front-page) { 17 @extend .clear; 18 } 17 19 18 20 @media (min-width: $ms-breakpoint) { 19 21 -
sass/site/_helphub.scss
20 20 text-decoration: none; 21 21 } 22 22 } 23 24 @media (min-width: $ms-breakpoint) { 25 display: flex; 26 flex-wrap: wrap; 27 justify-content: space-between; 28 align-items: flex-start; 29 30 .archive-block, 31 > div { 32 margin-right: 0; 33 margin-left: 0; 34 width: 30%; 35 font-size: ms( -2 ); 36 } 37 } 23 38 } 24 39 } 25 40 … … 40 55 } 41 56 } 42 57 58 .archive-pagination { 59 text-align: center; 60 margin-top: 4rem; 61 } 62 43 63 body.helphub-with-sidebar { 44 64 45 65 .left-sidebar { … … 107 127 } 108 128 } 109 129 }