Unverified Commit 3f8a4dbc authored by Marco Blessing's avatar Marco Blessing Committed by GitHub
Browse files

fix scrollbar in dark mode

parent 6ce969bd
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -331,3 +331,20 @@ body.dark .copy-status:active::after {
  display: block;
  color: $link-color-dark;
}

body.dark pre code::-webkit-scrollbar {
  height: 5px;
}

body.dark pre code::-webkit-scrollbar-thumb {
  background: $gray-400;
}

body.dark pre code:hover {
  scrollbar-width: thin;
  scrollbar-color: $gray-500 transparent;
}

body.dark pre code::-webkit-scrollbar-thumb:hover {
  background: $gray-500;
}