comparison default/assets/scss/vendors/bootstrap/mixins/_text-truncate.scss @ 0:1d038bc9b3d2 default tip

Up:default
author Liny <dev@neowd.com>
date Sat, 31 May 2025 09:21:51 +0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1d038bc9b3d2
1 // Text truncate
2 // Requires inline-block or block for proper styling
3
4 @mixin text-truncate() {
5 overflow: hidden;
6 text-overflow: ellipsis;
7 white-space: nowrap;
8 }