Skip to content

Commit

Permalink
issue Tejashri-Taral#640 fixed
Browse files Browse the repository at this point in the history
scroll bar width fixed
  • Loading branch information
VishnuGurrapu committed Oct 23, 2024
1 parent b213a42 commit 7d01246
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 17 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
31 changes: 14 additions & 17 deletions preloaderStyle.css
Original file line number Diff line number Diff line change
@@ -1,32 +1,29 @@
/* Scroll Bar Styling */
::-webkit-scrollbar{
width: 0.8em;
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track{

::-webkit-scrollbar-track {
background: transparent;
border-radius: 100vw;
margin-block:.5em ;
scroll-behavior:smooth;
margin-block: 0.5em;
}
::-webkit-scrollbar-thumb{
background-color:#3a383cc7 ;

::-webkit-scrollbar-thumb {
background-color: #3a383cc7;
border-radius: 10vw;
}
@supports (scrollbar-color:#3a383cc7){
*{
scrollbar-color:#3a383cc7 ;
}
@supports (scrollbar-color: #3a383cc7) {
* {
scrollbar-width: thin;
scrollbar-color: #3a383cc7 transparent;
}
}

/* preloader styling */
/* Preloader styling */
*, *:before, *:after {

box-sizing: border-box;

margin: 0;

padding: 0;

}

#preloader{
Expand Down

0 comments on commit 7d01246

Please sign in to comment.