How can I make icon buttons big?

0
How can I make this button big in Mendix? I can't find it. (9.10.1)
asked
1 answers
0

To give a button a custom size: first add a classname to the button’s property ‘Class’, say ’yourbuttonsclass’. Then in the scss-files add the stylilng:

.yourbuttonsclass {
  height: 40px;
  width: 60px;
}

 

answered