Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,37 @@ h1,h2,h3,h4,h5,h6 {
font-family: 'Bungee', sans-serif;
}

* {
scroll-behavior: smooth;
}

::-webkit-scrollbar {
width: 5px;
height: 3px;
}

.custom-scroll::-webkit-scrollbar {
width: 3px;
height: 3px;
}

::-webkit-scrollbar-track {
background: #fff8f3;
}

.dark ::-webkit-scrollbar-track {
background: #1B212C;
}

::-webkit-scrollbar-thumb {
background: #fe9c00;
border-radius: 10px;
}

.dark ::-webkit-scrollbar-thumb {
background: #cd7f00;
}
Comment on lines 29 to 44
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes look good overall. however, could we ensure that the color comes from the tailwind.config.js?

The core goal of the project was to create a modular conference website that allows building next year's website with minimal updates. These changes introduce duplication, which goes against that purpose.


@keyframes fall {
0% {
transform: translateY(-10vh) rotate(0deg);
Expand Down