Skip to content

Commit

Permalink
Added custom scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
Aayush259 committed Nov 6, 2024
1 parent 5dcb5af commit 68d8d05
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;

body {
@apply w-screen overflow-x-hidden;
}

::-webkit-scrollbar {
@apply w-2;
}

::-webkit-scrollbar-track {
@apply shadow bg-indigo-400;
}

::-webkit-scrollbar-thumb {
@apply bg-indigo-900 rounded-lg hover:bg-indigo-950 transition-all duration-200;
}

0 comments on commit 68d8d05

Please sign in to comment.