Merge branch 'main' of github.com:jgthms/bulma

This commit is contained in:
Jeremy Thomas
2025-04-19 15:23:29 +02:00
4 changed files with 29 additions and 4 deletions

View File

@@ -30890,6 +30890,10 @@ has-background-moon.is-hoverable:active {
font-weight: 700 !important;
}
.has-text-weight-extrabold {
font-weight: 800 !important;
}
.is-family-primary {
font-family: "Inter", "SF Pro", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}
@@ -36981,11 +36985,16 @@ svg {
.skeleton-toggler {
position: fixed;
right: 1rem;
right: 13.5rem;
bottom: 1rem;
z-index: 1;
z-index: 2;
}
@media screen and (max-width: 768px) {
.skeleton-toggler {
right: 1rem;
}
}
.js-resizable {
position: relative;
}

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>