Merge pull request #3937 from brendon/extrabold

Add .has-text-weight-extrabold
This commit is contained in:
Jeremy Thomas
2025-04-19 15:20:44 +02:00
committed by GitHub
3 changed files with 18 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# Bulma Changelog
## Unreleased
- Add .has-text-weight-extrabold as a typography class.
## 1.0.3
### Bug Fixes

View File

@@ -327,13 +327,21 @@ breadcrumb:
<td><code>has-text-weight-semibold</code></td>
<td>
Transforms text weight to
<span class="has-text-weight-semibold">semi-bold</span>
<span class="has-text-weight-semibold">semibold</span>
</td>
</tr>
<tr>
<td><code>has-text-weight-bold</code></td>
<td>
Transforms text weight to <span class="has-text-weight-bold">bold</span>
Transforms text weight to
<span class="has-text-weight-bold">bold</span>
</td>
</tr>
<tr>
<td><code>has-text-weight-extrabold</code></td>
<td>
Transforms text weight to
<span class="has-text-weight-extrabold">extrabold</span>
</td>
</tr>
</tbody>

View File

@@ -149,6 +149,10 @@ $alignments: (
font-weight: iv.$weight-bold !important;
}
.#{iv.$class-prefix}#{iv.$helpers-has-prefix}text-weight-extrabold {
font-weight: iv.$weight-extrabold !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}family-primary {
font-family: dv.$family-primary !important;
}