Skip to content

Commit

Permalink
Fix #3760
Browse files Browse the repository at this point in the history
  • Loading branch information
jgthms committed Apr 29, 2024
1 parent 07b6f9e commit 81a4753
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,7 @@
- Fix #3729: explain how to use Bulma in a modular way
- Fix #3785: make use of the `@prefers-reduced-motion` setting
- Fix #3758: broken links for `0.9.4` version
- Fix #3760: fix form controls typo

### Improvements

Expand Down
12 changes: 6 additions & 6 deletions docs/documentation/sass/form-control-mixins.html
Expand Up @@ -69,28 +69,28 @@

<ul>
<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>
{% 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>
{% 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>
</ul>
</div>

{% highlight sass %}.bulma-control-mixin {
&.is-small {
@include control-small;
@include controls.control-small;
}

&.is-medium {
@include control-medium;
@include controls.control-medium;
}

&.is-large {
@include control-large;
@include controls.control-large;
}
}{% endhighlight %}

Expand Down

0 comments on commit 81a4753

Please sign in to comment.