18 lines
391 B
CSS
18 lines
391 B
CSS
|
.scroll::-webkit-scrollbar {
|
||
|
width: 8px;
|
||
|
height: 8px;
|
||
|
}
|
||
|
.scroll::-webkit-scrollbar-thumb {
|
||
|
background-color: rgb(1, 169, 255);
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
.bg-date-picker-pop{
|
||
|
background-image: url('../images/list_bgd.png');
|
||
|
border:solid 1px rgb(1, 169, 255);
|
||
|
}
|
||
|
.div-no-data{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
flex-flow: column;
|
||
|
}
|