﻿/* Scrollbar related */

:root.dark-mode ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

:root.dark-mode ::-webkit-scrollbar-track {
    background: #2D3139;
}

:root.dark-mode ::-webkit-scrollbar-thumb {
    background: #A0A2A6;
}

:root.dark-mode ::-webkit-scrollbar-thumb:hover {
    background: #A6A8AC;
}

