From 4cdbf2ceb3392ee2f3c24d1828c17ed43dd8b077 Mon Sep 17 00:00:00 2001 From: Hakadao Date: Thu, 29 Aug 2024 11:50:18 +0800 Subject: [PATCH] feat: update grid layout switcher icons --- src/contentScripts/views/Home/Home.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/contentScripts/views/Home/Home.vue b/src/contentScripts/views/Home/Home.vue index f5207fc4..4db25727 100644 --- a/src/contentScripts/views/Home/Home.vue +++ b/src/contentScripts/views/Home/Home.vue @@ -31,9 +31,9 @@ const tabPageRef = ref() const gridLayoutIcons = computed((): GridLayoutIcon[] => { return [ - { icon: 'i-f7:square-grid-3x2', iconActivated: 'i-f7:square-grid-3x2-fill', value: 'adaptive' }, - { icon: 'i-f7:rectangle-grid-2x2', iconActivated: 'i-f7:rectangle-grid-2x2-fill', value: 'twoColumns' }, - { icon: 'i-f7:rectangle-grid-1x2', iconActivated: 'i-f7:rectangle-grid-1x2-fill', value: 'oneColumn' }, + { icon: 'i-mingcute:table-3-line', iconActivated: 'i-mingcute:table-3-fill', value: 'adaptive' }, + { icon: 'i-mingcute:layout-grid-line', iconActivated: 'i-mingcute:layout-grid-fill', value: 'twoColumns' }, + { icon: 'i-mingcute:list-check-3-line', iconActivated: 'i-mingcute:list-check-3-fill', value: 'oneColumn' }, ] })