Files
PyRIGS/static/sass/components/_mixins.scss
Harry Bridge e8fcfd3a50 Sass updates
2019-01-05 20:01:19 +00:00

17 lines
229 B
SCSS

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