diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-22 12:42:54 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:13 +0100 |
| commit | fc00c7401eb2a4ea18c774bb77336c342d284c53 (patch) | |
| tree | 687a757be8952f81edc1f8df5a120f8710dc8ee4 /packages/frontend/src/pages | |
| parent | replaced most ti-arrow* (diff) | |
| download | sharkey-fc00c7401eb2a4ea18c774bb77336c342d284c53.tar.gz sharkey-fc00c7401eb2a4ea18c774bb77336c342d284c53.tar.bz2 sharkey-fc00c7401eb2a4ea18c774bb77336c342d284c53.zip | |
replaced ti-arrow-back-up ti-quote ti-send
Diffstat (limited to 'packages/frontend/src/pages')
| -rw-r--r-- | packages/frontend/src/pages/admin/email-settings.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/api-console.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/welcome.timeline.vue | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/admin/email-settings.vue b/packages/frontend/src/pages/admin/email-settings.vue index 115070716c..ced0c8290c 100644 --- a/packages/frontend/src/pages/admin/email-settings.vue +++ b/packages/frontend/src/pages/admin/email-settings.vue @@ -55,7 +55,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkSpacer :contentMax="700" :marginMin="16" :marginMax="16"> <div class="_buttons"> <MkButton primary rounded @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton> - <MkButton rounded @click="testEmail"><i class="ph-paper-plane-tilt ph-bold ph-lg"></i> {{ i18n.ts.testEmail }}</MkButton> + <MkButton rounded @click="testEmail"><i class="ti ti-send"></i> {{ i18n.ts.testEmail }}</MkButton> </div> </MkSpacer> </div> diff --git a/packages/frontend/src/pages/api-console.vue b/packages/frontend/src/pages/api-console.vue index 97bed50061..30f12a8fb3 100644 --- a/packages/frontend/src/pages/api-console.vue +++ b/packages/frontend/src/pages/api-console.vue @@ -20,7 +20,7 @@ SPDX-License-Identifier: AGPL-3.0-only </MkSwitch> <MkButton primary :disabled="sending" @click="send"> <template v-if="sending"><MkEllipsis/></template> - <template v-else><i class="ph-paper-plane-tilt ph-bold ph-lg"></i> Send</template> + <template v-else><i class="ti ti-send"></i> Send</template> </MkButton> </div> <div v-if="res"> diff --git a/packages/frontend/src/pages/welcome.timeline.vue b/packages/frontend/src/pages/welcome.timeline.vue index 4768e31d1d..3e519c0910 100644 --- a/packages/frontend/src/pages/welcome.timeline.vue +++ b/packages/frontend/src/pages/welcome.timeline.vue @@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-for="note in notes" :key="note.id" :class="$style.note"> <div class="_panel" :class="$style.content"> <div> - <MkA v-if="note.replyId" class="reply" :to="`/notes/${note.replyId}`"><i class="ph-arrow-u-up-left ph-bold ph-lg"></i></MkA> + <MkA v-if="note.replyId" class="reply" :to="`/notes/${note.replyId}`"><i class="ti ti-arrow-back-up"></i></MkA> <Mfm v-if="note.text" :text="note.text" :isBlock="true" :author="note.user"/> <MkA v-if="note.renoteId" class="rp" :to="`/notes/${note.renoteId}`">RN: ...</MkA> </div> |