Sha256: 9d9ff04953e480bb0c3af82f4d7d81cecd7464ed16d6bae6e723381f042ffe48
Contents?: true
Size: 657 Bytes
Versions: 80
Compression:
Stored size: 657 Bytes
Contents
@import "../tokens/titles"; $pb_title_colors: ( default: $text_lt_default, light: $text_lt_light, lighter: $text_lt_lighter, success: $success, error: $error, link: $primary ); @mixin title_colors { @each $name, $color in $pb_title_colors { &[class*=_#{$name}] { color: $color } } } $pb_title_truncate: ( truncate-1: 1, truncate-2: 2, truncate-3: 3, truncate-4: 4, truncate-5: 5 ); @mixin title_truncate { @each $name, $number in $pb_title_truncate { &[class*=_#{$name}] { overflow: hidden; display: -webkit-box; -webkit-line-clamp: $number; -webkit-box-orient: vertical; } } }
Version data entries
80 entries across 80 versions & 1 rubygems