feat: add custom scrollbar (chrome)

This commit is contained in:
Valentin Kaelin 2019-10-13 15:51:47 +02:00
parent c8e085a1ea
commit 3d9fd8bcf5

View file

@ -1,5 +1,20 @@
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');
::-webkit-scrollbar {
width: 8px;
height: 8px
}
::-webkit-scrollbar,
::-webkit-scrollbar-track {
background: rgba(23, 49, 79, .6);
}
::-webkit-scrollbar-thumb {
background-color: rgba(194, 217, 254, .6);
border-radius: 8px
}
.min-w-1200 {
min-width: 1200px;;
}