Files
FixIt/assets/css/_common.scss
T
2022-04-10 17:12:21 +08:00

23 lines
337 B
SCSS

// ==============================
// Common Styles
// 常用样式
// ==============================
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}