mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-11 00:06:25 +08:00
Work in progress: ported storybooks content Still needs: - two-level nav hierarchy - styling improvements - stories ;-)
41 lines
545 B
JavaScript
41 lines
545 B
JavaScript
import theme from '../../theme';
|
|
|
|
const styles = {
|
|
container: {
|
|
...theme.base,
|
|
...theme.text,
|
|
borderRight: '1px solid #ECECEC',
|
|
marginRight: 30,
|
|
},
|
|
|
|
h3: {
|
|
color: '#000',
|
|
margin: '25px 0 7px 0',
|
|
padding: 0,
|
|
fontSize: 20,
|
|
},
|
|
|
|
ul: {
|
|
margin: 0,
|
|
padding: 0,
|
|
listStyle: 'none',
|
|
},
|
|
|
|
li: {
|
|
margin: '8px 0',
|
|
lineHeight: '25px',
|
|
},
|
|
|
|
item: {
|
|
...theme.text,
|
|
textDecoration: 'none',
|
|
},
|
|
};
|
|
|
|
styles.selectedItem = {
|
|
...styles.item,
|
|
fontWeight: 600,
|
|
};
|
|
|
|
export default styles;
|