Files
PyRIGS/assets/static/sass/components/_mixins.scss
2019-10-01 13:22:16 +01: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;
}