CSSでスクロールバーを装飾する

.scroll {
    overflow: auto;

    &::-webkit-scrollbar {
        width: 3px;
    }

    &::-webkit-scrollbar-track {
        background-color: #f0f0f0;
    }

    &::-webkit-scrollbar-thumb {
        background-color: #999;
        border-radius: 0;
    }
}