Removed some servers and fixed shadow on input in safari
authorAjay Bura <ajbura@gmail.com>
Sat, 6 Nov 2021 12:39:29 +0000 (18:09 +0530)
committerAjay Bura <ajbura@gmail.com>
Sat, 6 Nov 2021 12:39:29 +0000 (18:09 +0530)
Signed-off-by: Ajay Bura <ajbura@gmail.com>
config.json
package.json
src/app/templates/auth/Auth.scss
src/index.scss

index f134384b18d2cd30b6a67a1ff1332c2f566f0fd8..8575d59b7dd87d3bec70d0e8daf38389b91b5027 100644 (file)
@@ -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
index 8d854cc1cd0e7bbf2593cbcc73ffeb267d938932..6ea65bde3bc6d0de5c54c0b40822bf4d45167234 100644 (file)
@@ -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",
index ecc5011bfcfff407076bcf7534f8fe8e13106104..e872d0ceaeb677eca18d9f88552f0daeff902405 100644 (file)
@@ -56,6 +56,7 @@
 .homeserver-form {
   display: flex;
   margin-bottom: var(--sp-extra-tight);
+  line-height: 0;
   & > .input-container {
     flex: 1;
     & .input {
index 2b56022b637dfbb45cd2f81d2a787bfd8ddd4cc0..a4f1eaabdb31a37f22f078bf35d57f089a8dc069 100644 (file)
@@ -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;