::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--cn-bg-design-border);
    border-radius: 0.5rem;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}

::-webkit-scrollbar-track {
    background-color: var(--cn-bg-design-ground, transparent);
}

@supports not selector(::-webkit-scrollbar) {
    html {
        scrollbar-width: thin;
        scrollbar-color: var(--cn-bg-design-border) var(--cn-bg-design-ground, transparent);
    }
}

.scrollbar-none {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
}

.scrollbar-none::-webkit-scrollbar {
    width: 0;
    height: 0;
}
