Skip to content

Commit

Permalink
Merge pull request #260 from DecentralCardGame/259-scrollbar
Browse files Browse the repository at this point in the history
Chnaged scrollbar style
  • Loading branch information
lxgr-linux authored Jan 28, 2024
2 parents a17e41a + 5e0c28c commit b302bfb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
23 changes: 22 additions & 1 deletion src/assets/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;

::-webkit-scrollbar {
width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
background: #FFFFFF;
border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #555;
border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #D82027;;
}
3 changes: 0 additions & 3 deletions src/style.css

This file was deleted.

0 comments on commit b302bfb

Please sign in to comment.