update: style for sib-form-file on mobile

This commit is contained in:
gaelle morin 2020-06-16 13:02:42 +02:00
parent 4f7635e8d2
commit cf93abcd5c
No known key found for this signature in database
GPG Key ID: 028426702B95CF9C

View File

@ -224,18 +224,18 @@ sib-form-date {
} }
sib-form-file { sib-form-file {
margin-top: 1.8rem;
div { div {
display: flex; display: flex;
flex-direction: row-reverse; flex-direction: column-reverse;
align-items: center; align-items: center;
justify-content: flex-end; margin-top: 1.8rem;
input[type='text'] { @include breakpoint(lg) {
margin-bottom: 0.8rem; flex-direction: row-reverse;
justify-content: flex-end;
} }
input[type='file'] { input[type='file'] {
height: 0.1px; height: 0.1px;
opacity: 0; opacity: 0;
@ -244,6 +244,15 @@ sib-form-file {
width: 0.1px; width: 0.1px;
z-index: -1; z-index: -1;
} }
input[type='text'] {
margin-bottom: 0.8rem;
width: 100%;
@include breakpoint(lg) {
width: auto;
}
}
label { label {
@extend .button, @extend .button,
@ -251,27 +260,14 @@ sib-form-file {
.text-uppercase, .text-uppercase,
.button-primary, .button-primary,
.bordered; .bordered;
margin: auto 2.2rem; text-align: center;
width: 100%;
@include breakpoint(lg) {
margin: auto 2.2rem;
width: auto;
}
} }
input[type='file']:focus,
label:hover ~ input[type='file'] {
background-color: var(--color-secondary);
}
label ~ input[type='file']:focus {
outline: 1px dotted #000;
outline: -webkit-focus-ring-color auto 5px;
}
/*label {
align-items: baseline;
clear: both;
display: flex;
flex-direction: row;
flex-wrap: wrap;
max-width: 100%;
}*/
} }
} }