upd: replace pencil icon, widget icon

This commit is contained in:
blueb 2024-02-05 06:39:15 -05:00
parent e3525b82f9
commit 9b0d078fba
49 changed files with 65 additions and 65 deletions

View file

@ -11,7 +11,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkHeatmap :user="user" :src="'notes'"/>
</MkFoldableSection>
<MkFoldableSection class="item">
<template #header><i class="ph-pencil ph-bold ph-lg"></i> Notes</template>
<template #header><i class="ph-pencil-simple ph-bold ph-lg"></i> Notes</template>
<XNotes :user="user"/>
</MkFoldableSection>
<MkFoldableSection class="item">

View file

@ -26,7 +26,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<span v-if="user.isLocked" :title="i18n.ts.isLocked"><i class="ph-lock ph-bold ph-lg"></i></span>
<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="ph-robot ph-bold ph-lg"></i></span>
<button v-if="$i && !isEditingMemo && !memoDraft" class="_button add-note-button" @click="showMemoTextarea">
<i class="ph-pencil-line ph-bold ph-lg"/> {{ i18n.ts.addMemo }}
<i class="ph-pencil-simple-line ph-bold ph-lg"/> {{ i18n.ts.addMemo }}
</button>
</div>
</div>

View file

@ -87,7 +87,7 @@ const headerTabs = computed(() => user.value ? [{
}, {
key: 'notes',
title: i18n.ts.notes,
icon: 'ph-pencil ph-bold ph-lg',
icon: 'ph-pencil-simple ph-bold ph-lg',
}, {
key: 'activity',
title: i18n.ts.activity,