Make use of flexbox

This commit is contained in:
George Drummond
2019-04-17 14:51:01 -04:00
parent e1cca58062
commit e3cb30d35f
3 changed files with 10 additions and 5 deletions

View File

@@ -129,16 +129,18 @@
display: flex;
& > span {
width: 75%;
flex-grow: 3;
display: flex;
flex-basis: 0;
&.icon-link {
width: 25%;
flex-grow: 1;
}
}
}
span {
display: flex;
width: 25%;
flex-grow: 1;
flex-basis: 0;
}
}
}