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

Commit 4eb44be

Browse files
committed
scrollbar css changed
1 parent f07febd commit 4eb44be

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/App.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
:root{
2+
scrollbar-color:#000000 white !important;
3+
scrollbar-width:thin !important;
4+
}
5+
::-webkit-scrollbar-track {
6+
border: 1px solid gray;
7+
background-color: #f5f5f5;
8+
border-radius: 10px;
9+
}
10+
::-webkit-scrollbar {
11+
width: 10px;
12+
background-color: #f5f5f5;
13+
}
14+
::-webkit-scrollbar-thumb {
15+
border-radius: 10px;
16+
background-color: #000000;
17+
}

src/App.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
StylesProvider,
1313
ThemeProvider
1414
} from '@material-ui/core';
15+
import './App.css';
1516
import { MuiPickersUtilsProvider } from '@material-ui/pickers';
1617
import Auth from 'src/components/auth/Auth';
1718
// import CookiesNotification from 'src/components/CookiesNotification';

0 commit comments

Comments
 (0)