Skip to content

Commit

Permalink
Merge pull request #532 from Madhuravas/develop
Browse files Browse the repository at this point in the history
Fixed mosip icon alignment issue.
  • Loading branch information
aranaravi authored Oct 18, 2023
2 parents b091b5e + b68a4d8 commit 160e1ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ export class PersonalisedcardComponent implements OnInit, OnDestroy {
"version": this.appConfigService.getConfig()["resident.vid.version.new"],
"requesttime": Utils.getCurrentDate(),
"request": {
"html": btoa(this.buildHTML),
"html":btoa(unescape(encodeURIComponent(this.buildHTML))),
"attributes": Object.keys(this.dataDisplay)
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h3 style="color: #050505;">{{'sharewithpartner.title' | translate}}</h3>
<label style="font-size: 12px;color: #666666;">{{sharableAttributes['fullName']['label']}}</label><br><span style="color: #000000; font-weight: 400; font-size: 15px;">{{sharableAttributes['fullName']['value']}}</span>
</span>
</td>
<td align="right"><img style="height: 50px; width: 50px;" alt="logo" src="/assets/MOSIP Vertical Black.png"/></td>
<td [ngStyle]="{'float': langCode === 'ara' ? 'left' : 'right' }"><img style="height: 50px; width: 50px;" alt="logo" src="/assets/MOSIP Vertical Black.png"/></td>
</tr>
<tr *ngIf="sharableAttributes['dateOfBirth'] || sharableAttributes['gender']" style="word-break: break-word;">
<td *ngIf="sharableAttributes['dateOfBirth']" colspan='1'><label style="font-size: 12px;color: #666666;">{{sharableAttributes['dateOfBirth']['label']}}</label><br><span style="color: #000000; font-weight: 400; font-size: 15px;">{{sharableAttributes['dateOfBirth']['value']}}</span></td>
Expand Down

0 comments on commit 160e1ae

Please sign in to comment.