mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-09 09:47:28 +03:00
Formatted scrollbar in date picker for time component
This commit is contained in:
parent
3cb79c167e
commit
10d3deff37
1 changed files with 13 additions and 0 deletions
|
@ -94,7 +94,20 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-datepicker__time-list.react-datepicker__time-list {
|
.react-datepicker__time-list.react-datepicker__time-list {
|
||||||
|
/* Forefox scrollbar */
|
||||||
|
scrollbar-color: rgba(0, 0, 0, 0.5) var(--secondary-color);
|
||||||
|
scrollbar-width: thin;
|
||||||
|
|
||||||
|
/* Chrome webkit scrollbar */
|
||||||
|
&::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
background-color: var(--secondary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
&::-webkit-scrollbar-thumb {
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-datepicker-popper.react-datepicker-popper {
|
.react-datepicker-popper.react-datepicker-popper {
|
||||||
|
|
Loading…
Reference in a new issue