Removed some servers and fixed shadow on input in safari
Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
parent
d1228a085b
commit
364def188a
4 changed files with 9 additions and 5 deletions
|
@ -7,8 +7,6 @@
|
||||||
"halogen.city",
|
"halogen.city",
|
||||||
"kde.org",
|
"kde.org",
|
||||||
"matrix.org",
|
"matrix.org",
|
||||||
"mozilla.modular.im",
|
"mozilla.modular.im"
|
||||||
"perthchat.org",
|
|
||||||
"ru-matrix.org"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -5,11 +5,11 @@
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"npm": ">=6.14.11",
|
"npm": ">=6.14.11",
|
||||||
"node": "16.3.0"
|
"node": ">=14.6.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "webpack serve --config ./webpack.dev.js --open",
|
"start": "webpack serve --config ./webpack.dev.js --open",
|
||||||
"build": "webpack --config ./webpack.prod.js"
|
"build": "export NODE_OPTIONS=--openssl-legacy-provider; webpack --config ./webpack.prod.js"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "Ajay Bura",
|
"author": "Ajay Bura",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
.homeserver-form {
|
.homeserver-form {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-bottom: var(--sp-extra-tight);
|
margin-bottom: var(--sp-extra-tight);
|
||||||
|
line-height: 0;
|
||||||
& > .input-container {
|
& > .input-container {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
& .input {
|
& .input {
|
||||||
|
|
|
@ -290,6 +290,11 @@ button {
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
|
textarea, input[type="text"] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
}
|
||||||
textarea {
|
textarea {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
word-spacing: inherit;
|
word-spacing: inherit;
|
||||||
|
|
Loading…
Reference in a new issue