halfmoonui / halfmoon

Halfmoon is a highly customizable, drop-in Bootstrap replacement. It comes with three built-in core themes, with dark mode support for all themes and components.
https://www.gethalfmoon.com
MIT License
3.01k stars 118 forks source link

make label support without id #100

Closed thegamerx1 closed 3 years ago

thegamerx1 commented 3 years ago

the width and bottom padding are broken

<div class="form-group">
    <label>Name
        <input type="text" class="form-control" placeholder="Name" required="required">
    </label>
</div>

image

<div class="form-group">
    <label for="name">Name</label>
    <input type="text" id="name" class="form-control" placeholder="Name" required="required">
</div>

image