diff --git a/lib/ui/src/modules/ui/components/left_panel/header.js b/lib/ui/src/modules/ui/components/left_panel/header.js index efa2e8d7f69..a898bd03bb0 100755 --- a/lib/ui/src/modules/ui/components/left_panel/header.js +++ b/lib/ui/src/modules/ui/components/left_panel/header.js @@ -5,6 +5,8 @@ import { baseFonts } from '@storybook/components'; const wrapperStyle = { background: '#F7F7F7', marginBottom: 10, + display: 'flex', + height: 27, }; const headingStyle = { @@ -14,51 +16,49 @@ const headingStyle = { fontSize: '12px', fontWeight: 'bolder', color: '#828282', - border: '1px solid #C1C1C1', - textAlign: 'center', - borderRadius: '2px', - padding: '5px', cursor: 'pointer', + padding: 0, margin: 0, - float: 'none', overflow: 'hidden', }; const shortcutIconStyle = { textTransform: 'uppercase', - letterSpacing: '3.5px', fontSize: 12, fontWeight: 'bolder', color: 'rgb(130, 130, 130)', border: '1px solid rgb(193, 193, 193)', textAlign: 'center', borderRadius: 2, - padding: 5, cursor: 'pointer', - margin: 0, display: 'inlineBlock', - paddingLeft: 8, - float: 'right', - marginLeft: 5, + padding: 0, + margin: '0 0 0 5px', backgroundColor: 'inherit', outline: 0, + width: 30, }; const linkStyle = { textDecoration: 'none', + flexGrow: 1, + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + border: '1px solid rgb(193, 193, 193)', + borderRadius: 2, }; -const Header = ({ openShortcutsHelp, name, url }) => +const Header = ({ openShortcutsHelp, name, url }) => (
+ +

{name}

+
- -

- {name} -

-
-
; + +); Header.defaultProps = { openShortcutsHelp: null, diff --git a/package.json b/package.json index c5bb1eb820c..5d80c907aa2 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "husky": "^0.14.3", "jest": "^20.0.4", "jest-enzyme": "^3.6.1", - "lerna": "2.1.1", + "lerna": "2.1.2", "lint-staged": "^4.0.2", "lodash": "^4.17.4", "nodemon": "^1.11.0",