Skip to content
Snippets Groups Projects
Unverified Commit 90a92cc8 authored by Gaëlle Morin's avatar Gaëlle Morin
Browse files

scrollbars are customised

parent cd9e4782
No related branches found
No related tags found
2 merge requests!105The left menu and the right sidebar are responsive,!106Responsive fixes
...@@ -45,6 +45,46 @@ nav, .views-container { ...@@ -45,6 +45,46 @@ nav, .views-container {
-ms-overflow-style: none; -ms-overflow-style: none;
} }
/* Custom scrollbar of the left-menu */
nav {
scrollbar-width: thin;
scrollbar-color: $color-244-10-70 $color-233-18-29;
&::-webkit-scrollbar-track {
background: $color-233-18-29;
}
&::-webkit-scrollbar-thumb {
background-color: $color-244-10-70;
border-radius: 6px;
border: 3px solid $color-233-18-29;
}
&::-webkit-scrollbar {
width: 11px;
}
}
/* Custom scrollbar of the content */
.views-container {
scrollbar-width: thin;
scrollbar-color: $color-244-10-70 white;
&::-webkit-scrollbar-track {
background: white;
}
&::-webkit-scrollbar-thumb {
background-color: $color-244-10-70;
border-radius: 6px;
border: 3px solid white;
}
&::-webkit-scrollbar {
width: 11px;
}
}
/* Quick fix. Will be removed later */ /* Quick fix. Will be removed later */
#admin-circles, #admin-circles,
#admin-projects { #admin-projects {
...@@ -52,7 +92,6 @@ nav, .views-container { ...@@ -52,7 +92,6 @@ nav, .views-container {
} }
img { img {
max-height: 100%; max-height: 100%;
max-width: 100%; max-width: 100%;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment