From be8414212bd3c8d1ee0b8ee331e9daddee1b8f00 Mon Sep 17 00:00:00 2001 From: Roman Drozd Date: Mon, 30 Mar 2020 15:11:00 +0200 Subject: [PATCH] Fix spacing of close button Displayed incorrectly for some languages --- app/src/components/Controls/TopBar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/components/Controls/TopBar.js b/app/src/components/Controls/TopBar.js index 094af23..2cc380a 100644 --- a/app/src/components/Controls/TopBar.js +++ b/app/src/components/Controls/TopBar.js @@ -78,8 +78,8 @@ const styles = (theme) => }, actionButton : { - margin : theme.spacing(1), - padding : 0 + margin : theme.spacing(1, 0), + padding : theme.spacing(0, 1) } }); @@ -446,4 +446,4 @@ export default withRoomContext(connect( ); } } -)(withStyles(styles, { withTheme: true })(TopBar))); \ No newline at end of file +)(withStyles(styles, { withTheme: true })(TopBar)));