mirror of https://github.com/vector-im/riot-web
fix missing webkit prefixes for flexbox
parent
d82c4c5ef3
commit
031b048c07
|
@ -18,7 +18,9 @@ limitations under the License.
|
|||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
align-items: center;
|
||||
-webkit-align-items: center;
|
||||
}
|
||||
|
||||
.mx_SearchBar_input {
|
||||
|
@ -30,6 +32,7 @@ limitations under the License.
|
|||
padding-left: 11px;
|
||||
width: auto;
|
||||
flex: 1 1 0;
|
||||
-webkit-flex: 1 1 0;
|
||||
}
|
||||
|
||||
.mx_SearchBar_searchButton {
|
||||
|
|
Loading…
Reference in New Issue