I have the following css class:
<style>
.popup
{
width : 1350px !important;
height: 810px;
margin-top:-100px;
padding-top:10px;
}
</style>
Is it possible to modify any property of that class? Not of an object that this class has applied to, but css itself.
Thanks
Added full code:
<style>
.ngdialog.dialogcaseeditor .ngdialog-content
{
width : 1350px;
height: 910px;
margin-top:-100px;
padding-top:10px;
}
</style>