This commit is contained in:
Jeremy Thomas 2024-04-29 13:17:18 +01:00
parent 07b6f9e624
commit 81a4753afd
2 changed files with 7 additions and 6 deletions

View File

@ -20,6 +20,7 @@
- Fix #3729: explain how to use Bulma in a modular way - Fix #3729: explain how to use Bulma in a modular way
- Fix #3785: make use of the `@prefers-reduced-motion` setting - Fix #3785: make use of the `@prefers-reduced-motion` setting
- Fix #3758: broken links for `0.9.4` version - Fix #3758: broken links for `0.9.4` version
- Fix #3760: fix form controls typo
### Improvements ### Improvements

View File

@ -69,28 +69,28 @@ breadcrumb:
<ul> <ul>
<li> <li>
{% include docs/elements/snippet-inline.html content="@include control-small;" %} with a font size <code>$size-small</code> {% include docs/elements/snippet-inline.html content="@include controls.control-small;" %} with a font size <code>$size-small</code>
</li> </li>
<li> <li>
{% include docs/elements/snippet-inline.html content="@include control-medium;" %} with a font size <code>$size-medium</code> {% include docs/elements/snippet-inline.html content="@include controls.control-medium;" %} with a font size <code>$size-medium</code>
</li> </li>
<li> <li>
{% include docs/elements/snippet-inline.html content="@include control-large;" %} with a font size <code>$size-large</code> {% include docs/elements/snippet-inline.html content="@include controls.control-large;" %} with a font size <code>$size-large</code>
</li> </li>
</ul> </ul>
</div> </div>
{% highlight sass %}.bulma-control-mixin { {% highlight sass %}.bulma-control-mixin {
&.is-small { &.is-small {
@include control-small; @include controls.control-small;
} }
&.is-medium { &.is-medium {
@include control-medium; @include controls.control-medium;
} }
&.is-large { &.is-large {
@include control-large; @include controls.control-large;
} }
}{% endhighlight %} }{% endhighlight %}