office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
22 lines • 669 B
JavaScript
var overflowItemStyle = {
flexShrink: 0,
display: 'inherit'
};
export var getStyles = function (props) {
var className = props.className, vertical = props.vertical;
return {
root: [
'ms-OverflowSet',
{
position: 'relative',
display: 'flex',
flexWrap: 'nowrap'
},
vertical && { flexDirection: 'column' },
className
],
item: ['ms-OverflowSet-item', overflowItemStyle],
overflowButton: ['ms-OverflowSet-overflowButton', overflowItemStyle]
};
};
//# sourceMappingURL=OverflowSet.styles.js.map