From 4bc6bf6c3d7ca9e7e0024eaabe5c2844abfc6407 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 6ef8dae..cd1e566 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) } }); @@ -439,4 +439,4 @@ export default withRoomContext(connect( ); } } -)(withStyles(styles, { withTheme: true })(TopBar))); \ No newline at end of file +)(withStyles(styles, { withTheme: true })(TopBar)));