]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Add "has-fixed-size" to docs
authorTom Hartley <35436443+tomhrtly@users.noreply.github.com>
Fri, 5 Oct 2018 13:07:17 +0000 (14:07 +0100)
committerJeremy Thomas <bbxdesign@gmail.com>
Fri, 5 Oct 2018 14:40:24 +0000 (15:40 +0100)
docs/documentation/form/textarea.html

index 6a353ba592d0bece6511038a94a0a4bdb1de4bc8..aac12d11812bf2fb09a10f5d0c63d1eb36942be7 100644 (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 %}