Merge branch 'peterblazejewicz-fix/boards-layout'

This commit is contained in:
Phil Howard 2019-10-09 21:57:26 +01:00
commit a5109a4d7c
2 changed files with 27 additions and 2 deletions

View File

@ -169,11 +169,24 @@ Content Area
Boards Page Boards Page
*/ */
#boards > ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
#boards .board, #featured .board { #boards .board, #featured .board {
box-sizing:border-box; box-sizing:border-box;
width:25%; width:25%;
display:block; display:block;
float:left;
text-align:center; text-align:center;
a { a {

View File

@ -134,11 +134,23 @@ Content Area
/* /*
Boards Page Boards Page
*/ */
#boards > ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
#boards .board, #featured .board { #boards .board, #featured .board {
box-sizing: border-box; box-sizing: border-box;
width: 25%; width: 25%;
display: block; display: block;
float: left;
text-align: center; } text-align: center; }
#boards .board a, #featured .board a { #boards .board a, #featured .board a {
padding-top: 20px; padding-top: 20px;