I have used the following css but it increases the width of all the floating filters. I have searched the web and stack overflows still i was not able to fi it. Can anyone help?
.ag-tabs.ag-menu.ag-focus-managed.ag-ltr.ag-popup-child { width: 400px !important; }
I want only one specific filter popup width to be increased
2
Try to add a specific id or class to your component if possible, then wrap your custom css:
.myDiv {
color: red
}
#myId.myDiv {
color: green
}
<div class="myDiv">test 1</div>
<div class="myDiv">test 2</div>
<div id="myId" class="myDiv common-class">test 3</div>
3