fix: path for css

This commit is contained in:
Jean-Baptiste Pasquier 2020-12-09 19:28:59 +01:00
parent 549648baf2
commit e3427b63e2
No known key found for this signature in database
GPG Key ID: CC04B91B949C163A
1 changed files with 26 additions and 26 deletions

View File

@ -18,32 +18,6 @@ solid-form {
}
}
.button-register>form>input[type=submit] {
// @extend .button; // Can't extend .button, does not exists here.
@extend .text-bold;
@extend .text-uppercase;
@extend .reversed;
@extend .button-secondary;
@extend .bordered;
height: auto;
position: fixed;
bottom: 1em;
left: 10%;
white-space: normal;
width: 80%;
z-index: 1;
@include breakpoint(lg) {
height: 3rem;
left: 0;
margin: 0;
margin-left: auto;
margin-top: 32px;
position: relative;
width: auto;
}
}
.form-label {
/*flex: 1 1 auto;*/
@ -181,6 +155,32 @@ hubl-status {
}
}
}
.button-register input[type=submit] {
@extend .button,
.text-bold,
.text-uppercase,
.reversed,
.button-secondary,
.bordered;
height: auto;
position: fixed;
bottom: 1em;
left: 10%;
white-space: normal;
width: 80%;
z-index: 1;
@include breakpoint(lg) {
height: 3rem;
left: 0;
margin: 0;
margin-left: auto;
margin-top: 32px;
position: relative;
width: auto;
}
}
/* End */
solid-form-date {