Sass updates

This commit is contained in:
Harry Bridge
2019-01-05 20:01:19 +00:00
parent b72bc63560
commit e8fcfd3a50
4 changed files with 107 additions and 44 deletions

View File

@@ -0,0 +1,16 @@
@mixin clearfix() {
&:before,
&:after {
content: " "; // 1
display: table; // 2
}
&:after {
clear: both;
}
}
@mixin text-overflow() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}