You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
616 B
39 lines
616 B
@mixin utils-clearfix {
|
|
$selector: &;
|
|
|
|
@at-root {
|
|
#{$selector}::before,
|
|
#{$selector}::after {
|
|
display: table;
|
|
content: '';
|
|
}
|
|
#{$selector}::after {
|
|
clear: both;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin utils-vertical-center {
|
|
$selector: &;
|
|
|
|
@at-root {
|
|
#{$selector}::after {
|
|
display: inline-block;
|
|
content: '';
|
|
height: 100%;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin utils-ellipsis {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@mixin utils-inline-flex-center {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|