office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
29 lines • 745 B
JavaScript
export function getStyles(props) {
return {
example: [
'ms-BasicButtonsExample',
{
selectors: {
'.ms-Button': {
margin: '10px 0'
}
}
}
],
twoup: [
'ms-BasicButtonsTwoUp',
{
display: 'flex',
selectors: {
'& > *': {
flexGrow: 1
},
'.ms-Label': {
marginBottom: '10px'
}
}
}
]
};
}
//# sourceMappingURL=Button.Basic.Example.styles.js.map