Buttons
Primary Button
There primary button design should maintain a flat design and no fill with brand blue text. The color of the button should only be blue and not other colors.
<div class="row">
<div class="col-4">
<button class="primary-btn-nofill">Log In</button>
</div>
</div>
Disabled Button
You can add a disabled-btn attribute to your button element for a disabled state of the button.
<div class="row">
<div class="col-4">
<button class="primary-btn-nofill" disabled-btn>Log In</button>
</div>
</div>