mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-15 03:35:51 +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) {
|
render(html) {
|
||||||
return html`
|
return html`
|
||||||
You are requesting to creating the group below:
|
You are requesting to creating the group below:
|
||||||
<div style="background:#eee; padding:8px; margin:8px 0; border-radius:2px;">
|
<div style="background: #eee; padding: 8px; margin: 8px 0; border-radius: 5px;">
|
||||||
<div>Group Name: <span>${this._rGroupName}</span></div>
|
<div>Group Name: <span style="color: #000;">${this._rGroupName}</span></div>
|
||||||
<br>
|
<br>
|
||||||
<div>Group Description: <span>${this._rGroupDesc}</span></div>
|
<div>Group Description: <span style="color: #000;">${this._rGroupDesc}</span></div>
|
||||||
<br>
|
<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>
|
</div>
|
||||||
On pressing confirm, the group request will be sent!
|
On pressing confirm, the group request will be sent!
|
||||||
`
|
`
|
||||||
|
@ -19,8 +19,8 @@ export default class JoinGroupTransaction extends TransactionBase {
|
|||||||
render(html) {
|
render(html) {
|
||||||
return html`
|
return html`
|
||||||
You are requesting to join the group below:
|
You are requesting to join the group below:
|
||||||
<div style="background:#eee; padding:8px; margin:8px 0; border-radius:2px;">
|
<div style="background: #eee; padding: 8px; margin: 8px 0; border-radius: 5px;">
|
||||||
<span>${this._rGroupName}</span>
|
<span style="color: #000;">${this._rGroupName}</span>
|
||||||
</div>
|
</div>
|
||||||
On pressing confirm, the group request will be sent!
|
On pressing confirm, the group request will be sent!
|
||||||
`
|
`
|
||||||
|
@ -19,8 +19,8 @@ export default class LeaveGroupTransaction extends TransactionBase {
|
|||||||
render(html) {
|
render(html) {
|
||||||
return html`
|
return html`
|
||||||
You are requesting to leave the group below:
|
You are requesting to leave the group below:
|
||||||
<div style="background:#eee; padding:8px; margin:8px 0; border-radius:2px;">
|
<div style="background: #eee; padding: 8px; margin: 8px 0; border-radius: 5px;">
|
||||||
<span>${this._rGroupName}</span>
|
<span style="color: #000;">${this._rGroupName}</span>
|
||||||
</div>
|
</div>
|
||||||
On pressing confirm, the group request will be sent!
|
On pressing confirm, the group request will be sent!
|
||||||
`
|
`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user