patashala/style/cms/bower_components/bootstrap/scss/mixins/_text-truncate.scss
Vivek a53135a78d Added based code
Added base code to the repo
2024-02-07 20:19:28 +05:30

8 lines
167 B
SCSS
Executable File

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