mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
21 lines
504 B
SCSS
21 lines
504 B
SCSS
.jsgrid-grid-body,
|
|
.dataTables_scrollBody,
|
|
.table-responsive {
|
|
&::-webkit-scrollbar {
|
|
background-color: #F5F5F5;
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
border-radius: 10px;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
|
background-color: $body-color;
|
|
}
|
|
} |