
/* ========================================
   SCROLLBAR
   ======================================== */

/* ========================================
   SCROLLBAR FOR PRE
   ======================================== */
::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a202c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    /* background: #4a5568; */
    background: var(--primary-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

::-webkit-scrollbar-corner {
    background: #1a202c;
}

