Files
Shotreact/shotreact/wwwroot/lib/twitter-bootstrap/scss/mixins/_text-truncate.scss
clive c1e8ad417a
Some checks failed
Gitea CI/CD / build (push) Failing after 16m30s
LibMan Client Side Libraries Update.
2024-06-09 16:52:03 +10:00

9 lines
168 B
SCSS

// Text truncate
// Requires inline-block or block for proper styling
@mixin text-truncate() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}