Upgrade dependencies, Fix #4026

This commit is contained in:
Jeremy Thomas
2026-03-01 20:10:40 +00:00
parent 210b6f03b7
commit 193c7aaa73
5 changed files with 94 additions and 70 deletions

View File

@@ -7,8 +7,12 @@
@mixin typography-size($target: "") {
@each $size in dv.$sizes {
$i: list.index(dv.$sizes, $size);
$suffix: "";
@if $target != "" {
$suffix: "-" + $target;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}size-#{$i}#{if($target == "", "", "-" + $target)} {
.#{iv.$class-prefix}#{iv.$helpers-prefix}size-#{$i}#{$suffix} {
font-size: $size !important;
}
}