From 08de1f7baa525c9b59ffb876600149462712cd6b Mon Sep 17 00:00:00 2001 From: Amelia Yukii <123300075+Insert5StarName@users.noreply.github.com> Date: Fri, 3 Nov 2023 23:20:53 +0100 Subject: fix: icons being inconsistent and PG (#136) --- packages/frontend/src/scripts/get-note-menu.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/frontend/src/scripts/get-note-menu.ts') diff --git a/packages/frontend/src/scripts/get-note-menu.ts b/packages/frontend/src/scripts/get-note-menu.ts index b0710dfa50..239199172e 100644 --- a/packages/frontend/src/scripts/get-note-menu.ts +++ b/packages/frontend/src/scripts/get-note-menu.ts @@ -305,7 +305,7 @@ export function getNoteMenu(props: { }, } : undefined, { - icon: 'ph-share-network ph-bold pg-lg', + icon: 'ph-share-network ph-bold ph-lg', text: i18n.ts.share, action: share, }, @@ -316,11 +316,11 @@ export function getNoteMenu(props: { } : undefined, null, statePromise.then(state => state.isFavorited ? { - icon: 'ph-star-half ph-bold pg-lg', + icon: 'ph-star-half ph-bold ph-lg', text: i18n.ts.unfavorite, action: () => toggleFavorite(false), } : { - icon: 'ph-star ph-bold pg-lg', + icon: 'ph-star ph-bold ph-lg', text: i18n.ts.favorite, action: () => toggleFavorite(true), }), @@ -383,7 +383,7 @@ export function getNoteMenu(props: { action: edit, } : undefined, { - icon: 'ph-pencil-line ph-bold pg-lg', + icon: 'ph-pencil-line ph-bold ph-lg', text: i18n.ts.deleteAndEdit, danger: true, action: delEdit, -- cgit v1.2.3-freya