aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-11-27 16:47:12 +0700
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-11-27 16:47:12 +0700
commit6320b3788931018c16d05afdfd3adb86402a1dd6 (patch)
tree8cc3dc152ce39a482bd196b0cce5502638a6529d /src/features
parentEnhance settings readability (update/footer) (diff)
downloadferdium-app-6320b3788931018c16d05afdfd3adb86402a1dd6.tar.gz
ferdium-app-6320b3788931018c16d05afdfd3adb86402a1dd6.tar.zst
ferdium-app-6320b3788931018c16d05afdfd3adb86402a1dd6.zip
Fine-tune QuickSwitch component UI
Diffstat (limited to 'src/features')
-rw-r--r--src/features/quickSwitch/Component.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/features/quickSwitch/Component.js b/src/features/quickSwitch/Component.js
index 797589e9b..0f44385e1 100644
--- a/src/features/quickSwitch/Component.js
+++ b/src/features/quickSwitch/Component.js
@@ -56,6 +56,9 @@ const styles = theme => ({
56 marginBottom: 10, 56 marginBottom: 10,
57 display: 'flex', 57 display: 'flex',
58 alignItems: 'center', 58 alignItems: 'center',
59 '&:last-child': {
60 marginBottom: 0,
61 },
59 '&:hover': { 62 '&:hover': {
60 background: theme.styleTypes.primary.accent, 63 background: theme.styleTypes.primary.accent,
61 color: theme.styleTypes.primary.contrast, 64 color: theme.styleTypes.primary.contrast,
@@ -319,7 +322,10 @@ export default @injectSheet(styles) @inject('stores', 'actions') @observer class
319 ))} 322 ))}
320 </div> 323 </div>
321 324
322 <p>{intl.formatMessage(messages.info)}</p> 325 <p>
326 <br />
327 {intl.formatMessage(messages.info)}
328 </p>
323 </Modal> 329 </Modal>
324 ); 330 );
325 } 331 }