aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-14 18:34:34 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-14 18:34:34 +0100
commit1756a26b58be597045ead7e548f207ed50f05ab4 (patch)
tree6d33f8701e05a7133becf58660698393417690c0
parentExtract SVG logo from Affinity Photo (diff)
downloadferdium-app-1756a26b58be597045ead7e548f207ed50f05ab4.tar.gz
ferdium-app-1756a26b58be597045ead7e548f207ed50f05ab4.tar.zst
ferdium-app-1756a26b58be597045ead7e548f207ed50f05ab4.zip
Fix Dark Mode in auth screens
-rw-r--r--src/components/auth/Welcome.js4
-rw-r--r--src/features/appearance/index.ts1
-rw-r--r--src/styles/auth.scss2
3 files changed, 2 insertions, 5 deletions
diff --git a/src/components/auth/Welcome.js b/src/components/auth/Welcome.js
index 380565ff6..4f7a5ce30 100644
--- a/src/components/auth/Welcome.js
+++ b/src/components/auth/Welcome.js
@@ -69,9 +69,7 @@ class Login extends Component {
69 <Link to={changeServerRoute}> 69 <Link to={changeServerRoute}>
70 <span 70 <span
71 style={{ 71 style={{
72 textAlign: 'center', 72 color: '#fff'
73 width: '100%',
74 cursor: 'pointer',
75 }} 73 }}
76 > 74 >
77 {intl.formatMessage(messages.changeServer)} 75 {intl.formatMessage(messages.changeServer)}
diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts
index 7a4307cfd..4e95f1d97 100644
--- a/src/features/appearance/index.ts
+++ b/src/features/appearance/index.ts
@@ -56,7 +56,6 @@ function generateAccentStyle(accentColorStr) {
56 .settings-navigation .settings-navigation__link.is-active, 56 .settings-navigation .settings-navigation__link.is-active,
57 a.button, 57 a.button,
58 button.button, 58 button.button,
59 .auth,
60 .info-bar, 59 .info-bar,
61 .info-bar.info-bar--primary, 60 .info-bar.info-bar--primary,
62 .infobox.infobox--primary, 61 .infobox.infobox--primary,
diff --git a/src/styles/auth.scss b/src/styles/auth.scss
index aee255196..0c7485ef0 100644
--- a/src/styles/auth.scss
+++ b/src/styles/auth.scss
@@ -36,7 +36,7 @@
36} 36}
37 37
38.auth { 38.auth {
39 background: $theme-brand-gradient; 39 background: $dark-theme-gray-darkest;
40 display: flex; 40 display: flex;
41 justify-content: center; 41 justify-content: center;
42 42