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

Fix symbols

This commit is contained in:
AlphaX-Projects 2023-09-03 22:21:31 +02:00
parent 49455e1bf6
commit ba523e1d1f

View File

@ -343,7 +343,7 @@ class ChatTextEditor extends LitElement {
}
.material-symbols-outlined {
font-family: 'Material Symbols Outlined';
font-family: 'Material Icons Outlined';
font-weight: normal;
font-style: normal;
font-size: 18px; /* Preferred icon size */
@ -423,13 +423,13 @@ mwc-checkbox::shadow .mdc-checkbox::after, mwc-checkbox::shadow .mdc-checkbox::b
@click=${() => this.editor.chain().focus().toggleHighlight().run()}
class=${["chatbar-button-single", (this.editedMessageObj || this.repliedToMessageObj || this.openGifModal) && 'show-chatbar-buttons', this.editor && this.editor.isActive('highlight') ? 'is-active' : ''].join(' ')}
>
<span class="material-symbols-outlined">&#xf82b;</span>
<span class="material-symbols-outlined">&#xe22b;</span>
</button>
<button
@click=${() => this.editor.chain().focus().toggleCodeBlock().run()}
class=${["chatbar-button-single",(this.editedMessageObj || this.repliedToMessageObj || this.openGifModal) && 'show-chatbar-buttons', this.editor && this.editor.isActive('codeBlock') ? 'is-active' : ''].join(' ')}
>
<span class="material-symbols-outlined">&#xf84d;</span>
<span class="material-symbols-outlined">&#xe86f;</span>
</button>
<button
@click=${()=> this.toggleEnableChatEnter() }