Commit 7ed3f6a0 by Scott

Limit file input width

Fixes #544
parent 27499f9b
......@@ -1812,6 +1812,16 @@ input[type="submit"], button {
cursor: pointer;
text-align: center;
}
@media (max-width: 479px) {
input[type="file"] {
max-width: 220px;
}
}
@media (max-width: 359px) {
input[type="file"] {
max-width: 180px;
}
}
[class^="qa-part-form"],
[class^="qa-part-custom"] {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment