@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
31 lines (30 loc) • 744 B
TypeScript
declare const scrollbar: {
'body *::-webkit-scrollbar': {
width: string;
};
'body *::-webkit-scrollbar-track': {
backgroundColor: string;
};
'body *::-webkit-scrollbar-thumb': {
backgroundColor: string;
borderRadius: string;
border: string;
backgroundClip: string;
minHeight: string;
};
'body *::-webkit-scrollbar-button': {
display: string;
};
'body *::-webkit-scrollbar-corner': {
backgroundColor: string;
};
'body *::-webkit-resizer': {
backgroundImage: string;
backgroundSize: string;
};
'body *': {
scrollbarWidth: string;
scrollbarColor: string;
};
};
export default scrollbar;