How can i add custom css to vendor panel only in my-changes addon

In the latest vendor dashboard the body tag has the vendor-area tag

So you can try something like

body:not(.vendor-area) {
   .... your styles here.....
}

You can also ready how to add css to the admin area here:

1 Like