📄 _text-truncate.scss
/home/palash/git/site/node_modules/bootstrap/scss/mixins/_text-truncate.scss
Language: scss • Lines: 8
// Text truncate
// Requires inline-block or block for proper styling

@mixin text-truncate() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}