Adding columns and typo subs

This commit is contained in:
Shan Carter
2017-02-03 15:40:11 -08:00
parent 571d437fcf
commit 1995d75cb0
2 changed files with 114 additions and 0 deletions
+18
View File
@@ -333,3 +333,21 @@ dt-article section > dt-code {
}
}
/* Rows and Columns */
.row {
display: flex;
}
.column {
flex: 1;
box-sizing: border-box;
margin-right: 24px;
margin-left: 24px;
}
.row > .column:first-of-type {
margin-left: 0;
}
.row > .column:last-of-type {
margin-right: 0;
}