css - Correction to ng2-opd-popup -
when add form window arranged this:
but need:
in file: popup.component.html:
<div id="ng2-opd-popup-main" *ngif="visible" [ngclass]="mainclass" [ngstyle]="mainstyle"> <div class="row"> <div style="display: inline-block;width:100%"> <div id="ng2-opd-popup-well" [ngstyle]="wellstyle" class="ng2-opd-popup-well ng2-opd-popup-well-sm"> {{popupservice.options.header}} </div> </div> <div style="margin:20px;"> <ng-content></ng-content> <div *ngif="popupservice.options.showbuttons" style="margin-bottom:20px;margin-top:20px;float: right"> <button id="cancelbtn" [ngclass]="cancelbtnstyle" type="reset" (click)="confirmno()"> {{popupservice.options.canclebtncontent}} </button> <button id="confirmbtn" [ngclass]="confirmbtnstyle" (click)="confirmyes()"> {{popupservice.options.confirmbtncontent}} </button> </div> </div> </div> </div>
when change line <div style="margin:20px;">
on <div style="margin:20px; width:100%">
nothing happens application not respond code changes. problem?
Comments
Post a Comment