22 lines
320 B
SCSS
Raw Normal View History

2025-03-14 17:52:05 +08:00
@import 'bem';
@import 'ellipsis';
@import 'scrollable';
@import 'scrollbar';
@import 'value-of';
@mixin flex-row() {
display: flex;
flex-direction: row;
}
@mixin flex-column() {
display: flex;
flex-direction: column;
}
@mixin icon-space() {
display: inline-block;
content: '';
background-size: 100%;
}