forked from CITKParus/P8-Panels
30 lines
667 B
JavaScript
30 lines
667 B
JavaScript
/*
|
|
Парус 8 - Панели мониторинга
|
|
Типовые стили
|
|
*/
|
|
|
|
//----------------
|
|
//Интерфейс модуля
|
|
//----------------
|
|
|
|
//Стили
|
|
export const APP_STYLES = {
|
|
SCROLL: {
|
|
"&::-webkit-scrollbar": {
|
|
height: "8px",
|
|
width: "8px"
|
|
},
|
|
"&::-webkit-scrollbar-track": {
|
|
borderRadius: "8px",
|
|
backgroundColor: "#EBEBEB"
|
|
},
|
|
"&::-webkit-scrollbar-thumb": {
|
|
borderRadius: "8px",
|
|
backgroundColor: "#b4b4b4"
|
|
},
|
|
"&::-webkit-scrollbar-thumb:hover": {
|
|
backgroundColor: "#808080"
|
|
}
|
|
}
|
|
};
|