diff --git a/packages/frontend/src/components/MkMediaVideo.vue b/packages/frontend/src/components/MkMediaVideo.vue index eb7c1f49fd..d22bec511c 100644 --- a/packages/frontend/src/components/MkMediaVideo.vue +++ b/packages/frontend/src/components/MkMediaVideo.vue @@ -84,8 +84,8 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ hms(elapsedTimeMs) }}
diff --git a/packages/frontend/src/components/MkPullToRefresh.vue b/packages/frontend/src/components/MkPullToRefresh.vue index b1ec440e42..e0d0b561be 100644 --- a/packages/frontend/src/components/MkPullToRefresh.vue +++ b/packages/frontend/src/components/MkPullToRefresh.vue @@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- +
diff --git a/packages/frontend/src/pages/admin/roles.editor.vue b/packages/frontend/src/pages/admin/roles.editor.vue index 337a13399a..9656f76400 100644 --- a/packages/frontend/src/pages/admin/roles.editor.vue +++ b/packages/frontend/src/pages/admin/roles.editor.vue @@ -665,8 +665,8 @@ const rolePermission = computed({ const q = ref(''); function getPriorityIcon(option) { - if (option.priority === 2) return 'ph-arrow-up ph-bold ph-lg'; - if (option.priority === 1) return 'ph-arrow-up ph-bold ph-lg'; + if (option.priority === 2) return 'ti ti-arrows-up'; + if (option.priority === 1) return 'ti ti-arrow-narrow-up'; return 'ph-circle ph-bold ph-lg'; } diff --git a/packages/frontend/src/pages/drop-and-fusion.game.vue b/packages/frontend/src/pages/drop-and-fusion.game.vue index 136e04d44e..55d1254188 100644 --- a/packages/frontend/src/pages/drop-and-fusion.game.vue +++ b/packages/frontend/src/pages/drop-and-fusion.game.vue @@ -173,7 +173,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-
+
diff --git a/packages/frontend/src/pages/settings/profile.vue b/packages/frontend/src/pages/settings/profile.vue index 7b07e6961c..7f7ed39bbf 100644 --- a/packages/frontend/src/pages/settings/profile.vue +++ b/packages/frontend/src/pages/settings/profile.vue @@ -57,7 +57,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ i18n.ts.add }} {{ i18n.ts.delete }} - {{ i18n.ts.rearrange }} + {{ i18n.ts.rearrange }} {{ i18n.ts.save }}
diff --git a/packages/frontend/src/ui/deck/column.vue b/packages/frontend/src/ui/deck/column.vue index 643f64ab4a..fafd34816d 100644 --- a/packages/frontend/src/ui/deck/column.vue +++ b/packages/frontend/src/ui/deck/column.vue @@ -132,7 +132,7 @@ function getMenu() { }, { type: 'parent', text: i18n.ts.move + '...', - icon: 'ph-arrows-out-cardinal ph-bold ph-lg', + icon: 'ti ti-arrows-move', children: [{ icon: 'ti ti-arrow-left', text: i18n.ts._deck.swapLeft, @@ -146,13 +146,13 @@ function getMenu() { swapRightColumn(props.column.id); }, }, props.isStacked ? { - icon: 'ph-arrow-up ph-bold ph-lg', + icon: 'ti ti-arrow-up', text: i18n.ts._deck.swapUp, action: () => { swapUpColumn(props.column.id); }, } : undefined, props.isStacked ? { - icon: 'ph-arrow-down ph-bold ph-lg', + icon: 'ti ti-arrow-down', text: i18n.ts._deck.swapDown, action: () => { swapDownColumn(props.column.id); diff --git a/packages/frontend/vite.config.ts b/packages/frontend/vite.config.ts index 7ba2ac0c7c..6e04815c9c 100644 --- a/packages/frontend/vite.config.ts +++ b/packages/frontend/vite.config.ts @@ -263,6 +263,16 @@ export function getConfig(): UserConfig { 'ti ti-rocket-off': 'ph-rocket ph-bold ph-lg', 'ti ti-repeat-off': 'ph-repeat ph-bold ph-lg', 'ti ti-movie': 'ph-film-strip ph-bold ph-lg', + 'ti ti-arrows-minimize': 'ph-arrows-in ph-bold ph-lg', + 'ti ti-arrows-maximize': 'ph-arrows-out ph-bold ph-lg', + 'ti ti-arrows-up': 'ph-arrow-line-up ph-bold ph-lg', + 'ti ti-arrows-sort': 'ph-arrows-down-up ph-bold ph-lg', + 'ti ti-arrows-move': 'ph-arrows-out-cardinal ph-bold ph-lg', + 'ti ti-arrow-bar-to-down': 'ph-arrow-line-down ph-bold ph-lg', + 'ti ti-arrow-narrow-up': 'ph-arrow-up ph-bold ph-lg', + 'ti ti-arrow-big-right': 'ph-arrow-fat-right ph-bold ph-lg', + 'ti ti-arrow-up': 'ph-arrow-up ph-bold ph-lg', + 'ti ti-arrow-down': 'ph-arrow-down ph-bold ph-lg', }, }), ...process.env.NODE_ENV === 'production'