Scroll bar in dashboard [Solved]

Hello…
I’ts possible disable the right scroll bar in dashboard?
Thanks!

Add

.scContainerPage::-webkit-scrollbar {
    display: none;
}

.scContainerPage {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
}

In styles or in html template

Hi,
when you talk about “Style” you mean ccs ?
If i’m right we don’t have any event available in the dashboard application … so how did you “inject” the in the dashboard app ?

Thanks in advance !

Hello…
In the first widget in the dashboard, in onApplicationInit, call a php function, style
then, in php metod, add a new metod, style

?>
<style>
   .scContainerPage::-webkit-scrollbar {
       display: none;
   }
   .scContainerPage {
         -ms-overflow-style: none;  /* IE and Edge */
         scrollbar-width: none;  /* Firefox */
   }

</style>
<?php