mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Fix #3760
This commit is contained in:
parent
07b6f9e624
commit
81a4753afd
@ -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
|
||||
|
||||
|
@ -69,28 +69,28 @@ breadcrumb:
|
||||
|
||||
<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 %}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user