Changing all similar widgets fonts

Hi,
I found an other solution, but for my knowledge, is it possible to change in the root css all the fonts of the same widget inside a session.
For example the font size of dropdown menu ?

Hello,

you can add this into the css panel of the root

.menu-container {
  font-size: 5rem;
  
}

.button-container {
  font-size: 20rem;
}

Hit the f12 key then click on the tool

image

Then click on the element you want to get infos :slight_smile:

image

the css classes are displayed and you note that button-container or menu-container etc.

2 Likes

this is a perfect explanation
thank you, hope it helps others users