Forms
Input Group
Wrap inputs and addons in .quanta-input-group
for a single bordered control.
<div class="quanta-input-group">
<input type="text" class="quanta-input" placeholder="Enter text">
</div>
With Icon/Add-on
Use .quanta-input-icon-left
to prepend text or icons.
<div class="quanta-input-group">
<span class="quanta-input-icon-left">$</span>
<input type="number" class="quanta-input" placeholder="0.00">
</div>
Disabled State
Apply disabled
to the <input>
or <button>
.
<div class="quanta-input-group">
<span class="quanta-input-icon-left">🔒</span>
<input type="password" class="quanta-input" placeholder="Locked" disabled>
<button class="quanta-input-button" disabled>Send</button>
</div>