/* TODO how do i that only for chrome + window ? */

/* 
- derived from https://blog.logrocket.com/guide-styling-css-scrollbars/ 
- https://github.com/jeromeetienne/weboostai/issues/210
*/


/********************************************************************************/
/********************************************************************************/
/*										*/
/********************************************************************************/
/********************************************************************************/


/*
* Chrome iPad has wrong viewport height
* - workaround: https://stackoverflow.com/questions/69769235/chrome-ipad-has-wrong-viewport-height
*/
body {
        min-height: 100vh;
        /* mobile viewport bug fix */
        min-height: -webkit-fill-available;
}

html {
        height: -webkit-fill-available;
}

/********************************************************************************/
/********************************************************************************/
/*										*/
/********************************************************************************/
/********************************************************************************/

/* body {
        scrollbar-width: thin;
}

body::-webkit-scrollbar {
        width: 8px;
        height: 8px;
}

body::-webkit-scrollbar-thumb {
        background: darkgrey;
        border-radius: 4px;
}

body::-webkit-scrollbar-track {
        background-color: #ddd;
        border: 1px solid #ccc;
        border-radius: 4px;
} */

body {
        /* to help window font to be less ugly - from https://gist.github.com/dalethedeveloper/1846552 */
        -webkit-font-smoothing: subpixel-antialiased !important;
}

/* img {
        image-rendering: optimizeQuality;
} */