improving mobile upload modal alignment

This commit is contained in:
Kris 2018-04-12 12:16:02 -04:00
parent 0e2584b841
commit dfeaa34435
1 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,6 @@
.upload-selector { .upload-selector {
input[type="text"]{ input[type="text"]{
width: 90%; width: calc(100% - 20px);
} }
input[type="file"] { input[type="file"] {
font-size: $font-0; font-size: $font-0;
@ -16,13 +16,16 @@
&:first-of-type { &:first-of-type {
margin-bottom: 1em; margin-bottom: 1em;
} }
label { input, label {
vertical-align: middle; min-height: 20px;
line-height: $line-height-medium;
margin: 0;
} }
input { .radio {
line-height: $line-height-large; padding-left: 5px;
} }
.inputs { .inputs {
margin-top: 10px;
width: 100%; width: 100%;
} }
} }