Fix browser width compatibility
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
23a08c501a
commit
4faa562403
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue