#ynh-overlay-switch need to be removed from printing

i agree that is kinda handy to switch between apps but when it comes to printing that is annoying

consider adding a new css file media="print"

then

#ynh-overlay-switch
{
    display: none;
}

Something like that is possible normally :

@media print {
   #ynh-overlay-switch
   {
    display: none;
   }
}

or with a new file print.css :

@import url("print.css") print;

print.css :

#ynh-overlay-switch
{
  display: none;
}