Swap articles on left & right, to make article list flow better

This commit is contained in:
Matthew Grove
2019-03-06 12:41:59 +00:00
parent 84ec741d05
commit 8ade626530
2 changed files with 8 additions and 8 deletions

View File

@@ -18,14 +18,14 @@
/* automatically display articles on either side of the page, alternating */
.main-content .mdc-card {
float: left;
clear: left;
float: right;
clear: right;
width: calc(50% - 6px);
}
.main-content .mdc-card:nth-of-type(even) {
float: right;
clear: right;
float: left;
clear: left;
}

View File

@@ -18,14 +18,14 @@
/* automatically display articles on either side of the page, alternating */
.main-content .mdc-card {
float: left;
clear: left;
float: right;
clear: right;
width: calc(50% - 6px);
}
.main-content .mdc-card:nth-of-type(even) {
float: right;
clear: right;
float: left;
clear: left;
}