4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-14 11:15:50 +00:00

Fix colors

This commit is contained in:
AlphaX-Projects 2022-03-26 01:39:58 -07:00 committed by GitHub
parent 6ddfaf6b23
commit cca16dbad5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -11,12 +11,12 @@ export default class CreateGroupTransaction extends TransactionBase {
render(html) {
return html`
You are requesting to creating the group below:
<div style="background:#eee; padding:8px; margin:8px 0; border-radius:2px;">
<div>Group Name: <span>${this._rGroupName}</span></div>
<div style="background: #eee; padding: 8px; margin: 8px 0; border-radius: 5px;">
<div>Group Name: <span style="color: #000;">${this._rGroupName}</span></div>
<br>
<div>Group Description: <span>${this._rGroupDesc}</span></div>
<div>Group Description: <span style="color: #000;">${this._rGroupDesc}</span></div>
<br>
<div>Group Type: <span>${this.myGroupType === 1 ? "Public" : "Private"}</span></div>
<div>Group Type: <span style="color: #000;">${this.myGroupType === 1 ? "Public" : "Private"}</span></div>
</div>
On pressing confirm, the group request will be sent!
`

View File

@ -19,8 +19,8 @@ export default class JoinGroupTransaction extends TransactionBase {
render(html) {
return html`
You are requesting to join the group below:
<div style="background:#eee; padding:8px; margin:8px 0; border-radius:2px;">
<span>${this._rGroupName}</span>
<div style="background: #eee; padding: 8px; margin: 8px 0; border-radius: 5px;">
<span style="color: #000;">${this._rGroupName}</span>
</div>
On pressing confirm, the group request will be sent!
`

View File

@ -19,8 +19,8 @@ export default class LeaveGroupTransaction extends TransactionBase {
render(html) {
return html`
You are requesting to leave the group below:
<div style="background:#eee; padding:8px; margin:8px 0; border-radius:2px;">
<span>${this._rGroupName}</span>
<div style="background: #eee; padding: 8px; margin: 8px 0; border-radius: 5px;">
<span style="color: #000;">${this._rGroupName}</span>
</div>
On pressing confirm, the group request will be sent!
`