Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
scrollbar css changed
Browse files Browse the repository at this point in the history
  • Loading branch information
ArunTeltia committed Oct 4, 2020
1 parent f07febd commit 1793b4f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
::-webkit-scrollbar-track {
border: 1px solid gray;
background-color: #f5f5f5;
border-radius: 10px;
}
::-webkit-scrollbar {
width: 10px;
background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #000000;
}

1 change: 1 addition & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
StylesProvider,
ThemeProvider
} from '@material-ui/core';
import './App.css'
import { MuiPickersUtilsProvider } from '@material-ui/pickers';
import Auth from 'src/components/auth/Auth';
// import CookiesNotification from 'src/components/CookiesNotification';
Expand Down

0 comments on commit 1793b4f

Please sign in to comment.