diff --git a/src/app/shared/components/modal/confirm/confirm/confirm.component.html b/src/app/shared/components/modal/confirm/confirm/confirm.component.html index 7ae6193d74d4e3ee42b4bb725482ebdf2c9fdf06..4189d54ce924f57ab60527079cbc5124013fa67c 100644 --- a/src/app/shared/components/modal/confirm/confirm/confirm.component.html +++ b/src/app/shared/components/modal/confirm/confirm/confirm.component.html @@ -12,7 +12,7 @@ <p [innerHTML]="body"></p> </div> <div class="modal-footer"> - <button type="button" class="btn btn-info" (click)="yes()">{{yesButtonText}}</button> - <button type="button" class="btn btn-success" (click)="no()">{{noButtonText}}</button> + <button type="button" class="btn btn-info yes" (click)="yes()">{{yesButtonText}}</button> + <button type="button" class="btn btn-success no" (click)="no()">{{noButtonText}}</button> </div> </div> \ No newline at end of file diff --git a/src/app/shared/components/modal/confirm/confirm/confirm.component.scss b/src/app/shared/components/modal/confirm/confirm/confirm.component.scss index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..274c5a43d309724e4000d65333d4fcb1bd301b52 100644 --- a/src/app/shared/components/modal/confirm/confirm/confirm.component.scss +++ b/src/app/shared/components/modal/confirm/confirm/confirm.component.scss @@ -0,0 +1,3 @@ +.yes, .no { + width: 90px; +} \ No newline at end of file