style: change birthday label wording

This commit is contained in:
Ash Monty 2022-08-13 17:42:30 +02:00
parent deb091932a
commit f586fe9313
No known key found for this signature in database
GPG Key ID: 740B7C88251D49B6
2 changed files with 5 additions and 11 deletions

View File

@ -205,12 +205,9 @@ div.subtabs .subtabbtn.active:hover::before {
div.birthday {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: end;
align-items: center;
gap: 12px;
}
div.birthday span {
margin-bottom: 12px;
}
.has-textinput .icons {
display: flex;
flex-flow: row nowrap;

View File

@ -493,14 +493,11 @@
<label for="creatorName">Creator</label>
<input type="text" name="creatorName" id="creatorName" minLength="1" maxLength="10" />
</div>
<div class="birthday">
<div>
<label for="birthDay">Birth day</label>
<div>
<label for="birthDay">Birthdate (day/month)</label>
<div class="birthday">
<input type="number" name="birthDay" id="birthDay" min="1" max="31" />
</div>
<span>/</span>
<div>
<label for="birthMonth">Month</label>
<span>/</span>
<input type="number" name="birthMonth" id="birthMonth" min="1" max="12" />
</div>
</div>