Merge branch 'fix/boards-layout' of git://github.com/peterblazejewicz/Pinout.xyz into peterblazejewicz-fix/boards-layout

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

View File

@ -169,11 +169,24 @@ Content Area
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 {
box-sizing:border-box;
width:25%;
display:block;
float:left;
text-align:center;
a {

View File

@ -134,11 +134,23 @@ Content Area
/*
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 {
box-sizing: border-box;
width: 25%;
display: block;
float: left;
text-align: center; }
#boards .board a, #featured .board a {
padding-top: 20px;