office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
44 lines • 1.09 kB
JavaScript
import { normalize, FontSizes, FontWeights, } from '../../Styling';
export var getStyles = function (props) {
var className = props.className, theme = props.theme;
var palette = theme.palette;
return ({
root: [
'ms-Pivot',
normalize,
{
fontSize: FontSizes.medium,
fontWeight: FontWeights.regular,
position: 'relative',
color: palette.themePrimary,
whiteSpace: 'nowrap',
},
className
],
links: [
'ms-Pivot-links',
{}
],
link: [
'ms-Pivot-link',
{}
],
text: [
'ms-Pivot-text',
{}
],
count: [
'ms-Pivot-count',
{}
],
icon: [
'ms-Pivot-icon',
{}
],
ellipsis: [
'ms-Pivot-ellipsis',
{}
],
});
};
//# sourceMappingURL=Pivot.styles.js.map