How to I can customize the buttons of vaadin ? I'm trying to set height and width but doesn't work and I try align an image on center of button also and doesn't work.
I'm trying this.
/** css file styles.scss */
.myButton{
width:60px;
height:60px;
border:none;
text-align:center;
}
/** my button */
Button btnMyButton = new Button();
btnMyButton.setIcon(new ThemeResource("../icons/myicon.png"));
btnMyButton.addStyleName("myButton");
any idea ?