How can I add a margin-top to the .webix_menu-x class? It seems to be always returning to 0 but I need to add some space on the top.
I’m doing this in assets/app.css in the Webix Jet app.
.webix_menu-x{
margin-top:3px;
}```
But instead of 3px I always have 0px.
I see also that in webix.css it is already set like that:
```.webix_menu-x .webix_submenu_icon,.webix_view.webix_menu .webix_submenu_icon{width:6px;height:auto;font-size:14px;font-family:FontAwesome;line-height:1px;margin-top:3px}```
But on the client margin-top always ends up with 0px.