apphouse
Version:
Component library for React that uses observable state management and theme-able components.
29 lines (28 loc) • 696 B
TypeScript
/**
* A function that will apply global hidden scrollbar styles
* @description - Set global scrollbar styles
*/
export declare const setGlobalHiddenScrollbarStyle: () => void;
/**
* A hidden scrollbar styles
*/
export declare const HiddenScrollbarStyle: {
'&::-webkit-scrollbar': {
width: string;
overflow: string;
display: string;
};
'&::-webkit-scrollbar-track': {
background: string;
};
'&::-webkit-scrollbar-thumb': {
background: string;
borderRadius: string;
};
'&::-webkit-scrollbar-thumb:hover': {
background: string;
};
'&::-webkit-scrollbar-corner': {
background: string;
};
};