4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

fix category list text color

This commit is contained in:
PhilReact 2023-09-28 20:20:08 -05:00
parent 1d01fbc681
commit 98e4eb6d98

View File

@ -276,7 +276,7 @@ class PublishData extends LitElement {
<p>
<mwc-select id="category" label="${translate("publishpage.pchange7")}" index="0" style="min-width: 130px; max-width:100%; width:100%;">
${this.categories.map((c, index) => html`
<mwc-list-item value="${c.id}">${c.name}</mwc-list-item>
<mwc-list-item style="color:var(--black)" value="${c.id}">${c.name}</mwc-list-item>
`)}
</mwc-select>
</p>