Question
2
Replies
27
Views
Posted: November 21, 2018
Last activity: November 30, 2018
Button height not be applied at tablet browser
Hi team
We have defined height of button control format on my app skin rule. It behaivors expected on the pc browser but when using tablet, the height we setted is ignored.
What should we do if we need to customize the height of button when using tablet?
below is pc browser
and this is tablet
Hi
I've resolved this by adding custom css as below, but is it a good way to do it?
.iOS .TabletButton button,.android .TabletButton button{
height:30px!important;
}
Thanks