Source: dist/css/acc_boot.css, line 9366
2.4.3 Text Inputs
Bellow is the comparison of using the basic Html input types with the utility classes only vs using the bootstrap pattern for the input.
This is currently being depreciated. Please visited the new location for the styleguide at https://assets.acc.org/Arches/Latest/docs/
Source: dist/css/acc_boot.css, line 9366
Bellow is the comparison of using the basic Html input types with the utility classes only vs using the bootstrap pattern for the input.
<div class="flex_row flex gap-x_5">
<div class="flex_auto">
<h3>Utility Class</h3>
<label for="example-input-email" class='m-b_3'>Email address</label>
<input type="email" id="example-input-email" placeholder="Enter email"/>
</div>
<div class="flex_auto">
<h3>Bootstrap</h3>
<label for="exampleFormControlInput1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com"/>
</div>
</div>