Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented Customized Scrollbar Feature #333

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Altered the css for the scrollbar
- Made the required changes for the custom scrollbar to be in sync with
  remaining all websites of Layer5 Organization.

Signed-off-by: Akhilender <akhilenderb9@gmail.com>
  • Loading branch information
akhilender-bongirwar committed Sep 8, 2023
commit 0f5f6a8d5588d601244deb9fd0ff3751e3c5b8b2
12 changes: 5 additions & 7 deletions docs/_sass/layout.scss
Original file line number Diff line number Diff line change
@@ -544,17 +544,15 @@ hr {
}
/* Custom Scrollbar*/
::-webkit-scrollbar{
width: 8px;
width: 0.5rem;
}
::-webkit-scrollbar-track {
background-color: #ffffff;
background: rgb(255, 255, 255);
}
::-webkit-scrollbar-thumb {
background-color: #393E46;
border-radius: 12px;
box-shadow: inset 0 0 6px rgba(0,0,0,.3);
transition: background-color 0.3s ease;
background: rgb(60, 73, 79);
border-radius: 0.3rem;
}
::-webkit-scrollbar-thumb:hover {
background: #555b66;
background: rgb(85, 91, 102);
}