Merge pull request #332 from brooksbecton/Add-input-labels

Hook up labels to buy and language inputs
master
Mike Bryant 4 years ago committed by GitHub
commit abce50eeeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -95,7 +95,8 @@ h2 {
outline: none;
}
.dialog-box p {
.dialog-box p,
.dialog-box label {
font-family: 'Raleway', sans-serif;
font-weight: 800;
font-size: 1rem;

@ -109,7 +109,7 @@
<div class="form__row">
<h6 data-i18n="weekdays.sunday"></h6>
<div class="input__group">
<label data-i18n="[html]prices.description"></label>
<label data-i18n="[html]prices.description" for='buy'></label>
<input type="number" pattern="\d*" id="buy" placeholder="..." />
</div>
@ -296,7 +296,7 @@
<p id="contributors"><span data-i18n="textbox.contributors"></span>: </p>
<p data-i18n="[html]textbox.sponsor"></p>
<div class="dialog-box-lng">
<p data-i18n="textbox.language"></p>: <select id="language"></select>
<label for='language' data-i18n="textbox.language"></label>: <select id="language"></select>
</div>
</div>

Loading…
Cancel
Save