@fluentui/react-northstar
Version:
A themable React component library.
32 lines (31 loc) • 929 B
JavaScript
export var providerStyles = {
root: function root(_ref) {
var v = _ref.variables;
return {
background: v.background,
color: v.color,
textAlign: 'left',
'& ::-webkit-scrollbar': {
height: v.scrollbarHeight,
width: v.scrollbarWidth,
':disabled': {
display: 'none'
}
},
'& ::-webkit-scrollbar-thumb': {
borderRadius: v.scrollbarThumbBorderRadius,
border: "solid " + v.scrollbarThumbBorderSize + " transparent",
backgroundClip: 'content-box',
backgroundColor: v.scrollbarThumbBackgroundColor,
':hover': {
backgroundColor: v.scrollbarThumbHoverBackgroundColor,
border: "solid " + v.scrollbarThumbHoverBorderSize + " transparent"
}
},
'& ::-webkit-scrollbar-track': {
background: 'transparent'
}
};
}
};
//# sourceMappingURL=providerStyles.js.map