aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-13 22:40:26 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-13 22:40:26 +0100
commit7f2a779879e409cba7e35e504e02af25c26f7463 (patch)
treed7796c61a3f41b87173e6b022b8188795db954fb /src/features
parentFine-tune QuickSwitch styling in light mode (diff)
downloadferdium-app-7f2a779879e409cba7e35e504e02af25c26f7463.tar.gz
ferdium-app-7f2a779879e409cba7e35e504e02af25c26f7463.tar.zst
ferdium-app-7f2a779879e409cba7e35e504e02af25c26f7463.zip
Use accent color from settings in modals when appropriate
Diffstat (limited to 'src/features')
-rw-r--r--src/features/publishDebugInfo/Component.js1
-rw-r--r--src/features/quickSwitch/Component.js3
2 files changed, 1 insertions, 3 deletions
diff --git a/src/features/publishDebugInfo/Component.js b/src/features/publishDebugInfo/Component.js
index 8bdb50cb4..2b9af01a7 100644
--- a/src/features/publishDebugInfo/Component.js
+++ b/src/features/publishDebugInfo/Component.js
@@ -54,7 +54,6 @@ const styles = theme => ({
54 width: '80%', 54 width: '80%',
55 maxWidth: 600, 55 maxWidth: 600,
56 background: theme.styleTypes.primary.contrast, 56 background: theme.styleTypes.primary.contrast,
57 color: theme.styleTypes.primary.accent,
58 paddingTop: 30, 57 paddingTop: 30,
59 }, 58 },
60 headline: { 59 headline: {
diff --git a/src/features/quickSwitch/Component.js b/src/features/quickSwitch/Component.js
index 646794414..dfdd7bb17 100644
--- a/src/features/quickSwitch/Component.js
+++ b/src/features/quickSwitch/Component.js
@@ -34,7 +34,6 @@ const styles = theme => ({
34 width: '80%', 34 width: '80%',
35 maxWidth: 600, 35 maxWidth: 600,
36 background: theme.styleTypes.primary.contrast, 36 background: theme.styleTypes.primary.contrast,
37 color: theme.styleTypes.primary.accent,
38 paddingTop: 30, 37 paddingTop: 30,
39 }, 38 },
40 headline: { 39 headline: {
@@ -64,7 +63,7 @@ const styles = theme => ({
64 }, 63 },
65 }, 64 },
66 activeService: { 65 activeService: {
67 background: theme.styleTypes.primary.accent, 66 background: `${theme.styleTypes.primary.accent} !important`,
68 color: theme.styleTypes.primary.contrast, 67 color: theme.styleTypes.primary.contrast,
69 cursor: 'pointer', 68 cursor: 'pointer',
70 }, 69 },