Fix browser width compatibility

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2017-09-18 07:22:25 +02:00
parent 23a08c501a
commit 4faa562403
No known key found for this signature in database
GPG Key ID: FB5ACEED51955BF8
1 changed files with 10 additions and 3 deletions

View File

@ -1,7 +1,16 @@
form fieldset {
display: flex !important;
flex-direction: column;
}
#password {
margin-right: 0 !important;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
height: 45px;
flex: 1 1 auto;
width: 100% !important;
min-width: 0; /* FF hack for to override default value */
}
input[type='submit'] {
@ -13,7 +22,5 @@ input[type='submit'] {
}
fieldset > p {
position: relative;
display: flex;
align-items: center;
display: inline-flex;
}