From 364def188a6492dc78eb348da549daafada5239c Mon Sep 17 00:00:00 2001 From: Ajay Bura Date: Sat, 6 Nov 2021 18:09:29 +0530 Subject: [PATCH] Removed some servers and fixed shadow on input in safari Signed-off-by: Ajay Bura --- config.json | 4 +--- package.json | 4 ++-- src/app/templates/auth/Auth.scss | 1 + src/index.scss | 5 +++++ 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/config.json b/config.json index f134384b..8575d59b 100644 --- a/config.json +++ b/config.json @@ -7,8 +7,6 @@ "halogen.city", "kde.org", "matrix.org", - "mozilla.modular.im", - "perthchat.org", - "ru-matrix.org" + "mozilla.modular.im" ] } \ No newline at end of file diff --git a/package.json b/package.json index 8d854cc1..6ea65bde 100644 --- a/package.json +++ b/package.json @@ -5,11 +5,11 @@ "main": "index.js", "engines": { "npm": ">=6.14.11", - "node": "16.3.0" + "node": ">=14.6.0" }, "scripts": { "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": [], "author": "Ajay Bura", diff --git a/src/app/templates/auth/Auth.scss b/src/app/templates/auth/Auth.scss index ecc5011b..e872d0ce 100644 --- a/src/app/templates/auth/Auth.scss +++ b/src/app/templates/auth/Auth.scss @@ -56,6 +56,7 @@ .homeserver-form { display: flex; margin-bottom: var(--sp-extra-tight); + line-height: 0; & > .input-container { flex: 1; & .input { diff --git a/src/index.scss b/src/index.scss index 2b56022b..a4f1eaab 100644 --- a/src/index.scss +++ b/src/index.scss @@ -290,6 +290,11 @@ button { overflow: visible; -webkit-appearance: button; } +textarea, input[type="text"] { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} textarea { color: inherit; word-spacing: inherit;