How can I customize the CSS scrollbar in Jmix 2.4.3 when elements are inside the Shadow DOM, and the ::-webkit-scrollbar
rules do not apply?
::-webkit-scrollbar {
width: 6px;
/*height: 5px;*/
}
/* Track */
::-webkit-scrollbar-track {
background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: var(--template-page-details-container-footer-color-stroke);
}