1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-22 07:16:38 +02:00

input width

This commit is contained in:
antelle 2020-03-21 17:38:34 +01:00
parent d2f64630f5
commit e09609cc68

View File

@ -108,7 +108,7 @@
> i { > i {
font-size: 3em; font-size: 3em;
@include mobile { @include mobile {
line-height: .8; line-height: 1;
} }
} }
} }
@ -184,13 +184,10 @@
input[type='password'].open__pass-input { input[type='password'].open__pass-input {
font-size: $large-pass-font-size; font-size: $large-pass-font-size;
margin-bottom: 0; margin-bottom: 0;
width: 19em; &[readonly] { cursor: pointer; }
&[readonly] { width: 38vw;
cursor: pointer; @media (max-width: 1000px) { width: 16em; }
} @include mobile { width: calc(100vw - 20px); }
@include mobile {
width: calc(100vw - 20px);
}
} }
&__settings { &__settings {