summaryrefslogtreecommitdiff
path: root/packages/client/src/ui/_common_
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-19 13:53:41 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-19 13:53:41 +0900
commitf83bd31fd5fee0bb2209ad0e5359ffa473ffb30e (patch)
treeb589c3f04550fc0fb94c59085bea8ffc930e7b04 /packages/client/src/ui/_common_
parentupdate depsd (diff)
downloadmisskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.tar.gz
misskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.tar.bz2
misskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.zip
wip
Diffstat (limited to 'packages/client/src/ui/_common_')
-rw-r--r--packages/client/src/ui/_common_/navbar-for-mobile.vue6
-rw-r--r--packages/client/src/ui/_common_/navbar.vue6
2 files changed, 6 insertions, 6 deletions
diff --git a/packages/client/src/ui/_common_/navbar-for-mobile.vue b/packages/client/src/ui/_common_/navbar-for-mobile.vue
index de000447ad..7747f9ca38 100644
--- a/packages/client/src/ui/_common_/navbar-for-mobile.vue
+++ b/packages/client/src/ui/_common_/navbar-for-mobile.vue
@@ -9,7 +9,7 @@
</div>
<div class="middle">
<MkA v-click-anime class="item index" active-class="active" to="/" exact>
- <i class="icon fas fa-home fa-fw"></i><span class="text">{{ i18n.ts.timeline }}</span>
+ <i class="icon ti ti-home-2 fa-fw"></i><span class="text">{{ i18n.ts.timeline }}</span>
</MkA>
<template v-for="item in menu">
<div v-if="item === '-'" class="divider"></div>
@@ -27,7 +27,7 @@
<span v-if="otherMenuItemIndicated" class="indicator"><i class="icon fas fa-circle"></i></span>
</button>
<MkA v-click-anime class="item" active-class="active" to="/settings">
- <i class="icon fas fa-cog fa-fw"></i><span class="text">{{ i18n.ts.settings }}</span>
+ <i class="icon ti ti-settings fa-fw"></i><span class="text">{{ i18n.ts.settings }}</span>
</MkA>
</div>
<div class="bottom">
@@ -85,7 +85,7 @@ function openInstanceMenu(ev: MouseEvent) {
}, {
type: 'link',
text: i18n.ts.federation,
- icon: 'fas fa-globe',
+ icon: 'ti ti-world',
to: '/about#federation',
}, null, {
type: 'parent',
diff --git a/packages/client/src/ui/_common_/navbar.vue b/packages/client/src/ui/_common_/navbar.vue
index 20622b083a..2a96e200fc 100644
--- a/packages/client/src/ui/_common_/navbar.vue
+++ b/packages/client/src/ui/_common_/navbar.vue
@@ -9,7 +9,7 @@
</div>
<div class="middle">
<MkA v-click-anime v-tooltip.noDelay.right="i18n.ts.timeline" class="item index" active-class="active" to="/" exact>
- <i class="icon fas fa-home fa-fw"></i><span class="text">{{ i18n.ts.timeline }}</span>
+ <i class="icon ti ti-home-2 fa-fw"></i><span class="text">{{ i18n.ts.timeline }}</span>
</MkA>
<template v-for="item in menu">
<div v-if="item === '-'" class="divider"></div>
@@ -37,7 +37,7 @@
<span v-if="otherMenuItemIndicated" class="indicator"><i class="icon fas fa-circle"></i></span>
</button>
<MkA v-click-anime v-tooltip.noDelay.right="i18n.ts.settings" class="item" active-class="active" to="/settings">
- <i class="icon fas fa-cog fa-fw"></i><span class="text">{{ i18n.ts.settings }}</span>
+ <i class="icon ti ti-settings fa-fw"></i><span class="text">{{ i18n.ts.settings }}</span>
</MkA>
</div>
<div class="bottom">
@@ -108,7 +108,7 @@ function openInstanceMenu(ev: MouseEvent) {
}, {
type: 'link',
text: i18n.ts.federation,
- icon: 'fas fa-globe',
+ icon: 'ti ti-world',
to: '/about#federation',
}, null, {
type: 'parent',