Client - fix duration inputs + style fix on picture edition
This commit is contained in:
parent
4b54634ce8
commit
8a85f6d1c0
@ -89,6 +89,7 @@
|
||||
.user-picture-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: $default-margin;
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
|
@ -137,6 +137,8 @@
|
||||
class="workout-duration"
|
||||
type="text"
|
||||
placeholder="HH"
|
||||
minlength="1"
|
||||
maxlength="2"
|
||||
pattern="^([0-1]?[0-9]|2[0-3])$"
|
||||
required
|
||||
@invalid="invalidateForm"
|
||||
@ -150,6 +152,8 @@
|
||||
class="workout-duration"
|
||||
type="text"
|
||||
pattern="^([0-5][0-9])$"
|
||||
minlength="2"
|
||||
maxlength="2"
|
||||
placeholder="MM"
|
||||
required
|
||||
@invalid="invalidateForm"
|
||||
@ -163,6 +167,8 @@
|
||||
class="workout-duration"
|
||||
type="text"
|
||||
pattern="^([0-5][0-9])$"
|
||||
minlength="2"
|
||||
maxlength="2"
|
||||
placeholder="SS"
|
||||
required
|
||||
@invalid="invalidateForm"
|
||||
|
Loading…
Reference in New Issue
Block a user