Merge pull request #29 from emilio/popup

Fix overflowing inputs on some platforms.
This commit is contained in:
Simon Brazell 2020-03-30 13:49:54 +11:00 committed by GitHub
commit 1c96a3354a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -86,11 +86,19 @@ footer a.button {
input[type=url], select {
width: 100%;
box-sizing: border-box;
margin-bottom: 5px;
}
input[type=url] {
padding: 1px 2px;
}
input[type=checkbox] {
opacity: 0;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
.checkbox-label {