I Have a column whose dimensions are
width:30px
and height:25px
The column bears only one button if the popover is triggered, It's width scales to the width of column ... Can someone know how to increase the width of the popover?
width:100px
and height:50
I have used the following css code
.popover{
widht:100px;
height:50px;
overflow:visible;
}
A solution I tested on the Bootstrap 4 Beta version:
.popover {
min-width: 30em !important;
}