halfmoonui/halfmoon

make label support without id

thegamerx1 opened this issue · 0 comments

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