stylesheet.css 393 B

123456789101112131415161718192021
  1. ::-webkit-scrollbar {
  2. width: 8px;
  3. height: 8px;
  4. }
  5. ::-webkit-scrollbar-thumb {
  6. background: #3A4047;
  7. border-radius: 9px;
  8. }
  9. ::-webkit-scrollbar-thumb:hover{
  10. background: #2E3339;
  11. }
  12. ::-webkit-scrollbar-track{
  13. background: #343a40;
  14. border-radius: 10px;
  15. box-shadow: inset 7px 10px 12px #343a40;
  16. }
  17. .nav-link>span,
  18. .nav-link {
  19. display: flex;
  20. align-items: center;
  21. }