diff --git a/src/components/controls/panel-layout.js b/src/components/controls/panel-layout.js index c2cf1ead5..4d7444d6d 100644 --- a/src/components/controls/panel-layout.js +++ b/src/components/controls/panel-layout.js @@ -10,7 +10,8 @@ import { SidebarButton } from "./styles"; const ButtonText = styled.span` margin: 5px; position: relative; - top: -1px; + left: 4px; + top: -6px; `; const PanelsFullIcon = withTheme(icons.PanelsFull); @@ -27,7 +28,6 @@ class PanelLayouts extends React.Component { return (
- { @@ -35,10 +35,10 @@ class PanelLayouts extends React.Component { this.props.dispatch({ type: CHANGE_PANEL_LAYOUT, data: "full" }); }} > + {t("sidebar:full")} - { @@ -46,9 +46,9 @@ class PanelLayouts extends React.Component { this.props.dispatch({ type: CHANGE_PANEL_LAYOUT, data: "grid" }); }} > + {t("sidebar:grid")} -
); }