Add "has-fixed-size" to docs

This commit is contained in:
Tom Hartley 2018-10-05 14:07:17 +01:00 committed by Jeremy Thomas
parent ee83ff773f
commit 9691df1ab7

View file

@ -134,6 +134,12 @@ meta:
{% include elements/snippet.html content=textarea_example %}
{% capture fixedsize_example %}
<div class="control">
<textarea class="textarea has-fixed-size" type="text" placeholder="Fixed size textarea"></textarea>
</div>
{% endcapture %}
<div class="content">
<p>
You can set the height of the textarea using the `rows` HTML attribute.
@ -200,3 +206,7 @@ meta:
</div>
{% include elements/snippet.html content=readonly_example %}
<h4 class="subtitle">Fixed Size</h4>
{% include elements/snippet.html content=fixedsize_example %}