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:
parent
6ddfaf6b23
commit
cca16dbad5
@ -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!
|
||||
`
|
||||
|
@ -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!
|
||||
`
|
||||
|
@ -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!
|
||||
`
|
||||
|
Loading…
x
Reference in New Issue
Block a user