From 50e1dffd48997aed8b519540e620037a17eea7e1 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 30 May 2017 13:37:15 +0300 Subject: [PATCH] Doc update Fixed a typo in input_control's docs. --- docs/input_control.html | 2 +- docs/v2/DEVLOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/input_control.html b/docs/input_control.html index eb680c2..e86b953 100644 --- a/docs/input_control.html +++ b/docs/input_control.html @@ -161,7 +161,7 @@
-

Forms are structured the same way you would structure a normal form in HTML5. Simply create a root <form> element and add your <input> elements inside. Link them to <label> elements for ease of acces and you are pretty much set. We highly recommend using the <fieldset> and <legend> elements to annotate your forms as well, but you can skip them if you wish.

+

Forms are structured the same way you would structure a normal form in HTML5. Simply create a root <form> element and add your <input> elements inside. Link them to <label> elements for ease of access and you are pretty much set. We highly recommend using the <fieldset> and <legend> elements to annotate your forms as well, but you can skip them if you wish.

Forms are inline by default. Use the .input-group class on a <div> wrapping inside it an <input> and <label> pair to make sure they always display together in one line. You can make your .input-groups respond to viewport changes, by adding the .fluid class to them. Finally, if you want to create aligned forms with a preset layout, you can utilize the grid module's rows and columns.

Sample code

<form>
diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md
index 851eecd..eee1ae0 100644
--- a/docs/v2/DEVLOG.md
+++ b/docs/v2/DEVLOG.md
@@ -1185,3 +1185,4 @@
 - Added a note in `core` doc to tell people about fluid typography.
 - Fixed a typo in `tab`.
 - Fixed a typo in `table`.
+- Fixed a typo in `input_control`.