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

Commit 1793b4f

Browse files
committed
scrollbar css changed
1 parent f07febd commit 1793b4f

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

src/App.css

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

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)