| |
| |
|
|
|
|
|
|
| ::-webkit-scrollbar {
|
| width: 12px;
|
| height: 12px;
|
| }
|
|
|
| ::-webkit-scrollbar-track {
|
| background-color: #f8fafc;
|
| border-radius: 8px;
|
| }
|
|
|
| ::-webkit-scrollbar-thumb {
|
| background-color: #0284c7;
|
| border-radius: 8px;
|
| border: 3px solid #f8fafc;
|
| background-clip: padding-box;
|
| }
|
|
|
| ::-webkit-scrollbar-thumb:hover {
|
| background-color: #0369a1;
|
| border: 3px solid #f8fafc;
|
| background-clip: padding-box;
|
| }
|
|
|
| ::-webkit-scrollbar-corner {
|
| background-color: transparent;
|
| }
|
|
|
|
|
| .custom-scrollbar::-webkit-scrollbar {
|
| width: 6px;
|
| height: 6px;
|
| }
|
|
|
| .custom-scrollbar::-webkit-scrollbar-track {
|
| background: rgba(0, 0, 0, 0.05);
|
| border-radius: 3px;
|
| }
|
|
|
| .custom-scrollbar::-webkit-scrollbar-thumb {
|
| background: rgba(0, 0, 0, 0.2);
|
| border-radius: 3px;
|
| }
|
|
|
|
|
| .key-scroll-container {
|
| max-width: 100%;
|
| overflow-x: auto;
|
| white-space: nowrap;
|
| scrollbar-width: thin;
|
| }
|
|
|