4 changed files with 45 additions and 23 deletions
@ -1,3 +1,23 @@ |
|||
@tailwind base; |
|||
@tailwind components; |
|||
@tailwind utilities; |
|||
|
|||
/* custom scrollbar */ |
|||
::-webkit-scrollbar { |
|||
width: 20px; |
|||
} |
|||
|
|||
::-webkit-scrollbar-track { |
|||
background-color: transparent; |
|||
} |
|||
|
|||
::-webkit-scrollbar-thumb { |
|||
background-color: #d6dee1; |
|||
border-radius: 20px; |
|||
border: 6px solid transparent; |
|||
background-clip: content-box; |
|||
} |
|||
|
|||
::-webkit-scrollbar-thumb:hover { |
|||
background-color: #a8bbbf; |
|||
} |
|||
|
|||
Loading…
Reference in new issue