/*
Theme Name: Liga-Child
Theme URI:
Author: Roma Murzinov
Author URI: https://themeforest.net/user/mrmurza
Template: liga
Description: Liga Child Theme
Version: 1.0.0
License: ThemeForest Split License
License URI: license.txt
Tags: theme-options, full-width-template, sticky-post, threaded-comments, featured-images
*/



/* scrollbar */
body {
    --sb-track-color: #e5e5e5;
    --sb-track-color: #2e2e2e;
    --sb-thumb-color: #00b5e2;
    --sb-thumb-color: #00b2b3;
    --sb-size: 12px;
}

/* [data-theme=dark] body {
    --sb-track-color: #2e2e2e;
} */

body::-webkit-scrollbar {
    width: var(--sb-size)
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 8px;

}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}