diff options
author | 2022-11-13 23:16:57 +0100 | |
---|---|---|
committer | 2022-11-13 23:16:57 +0100 | |
commit | 5d8f46abf8d5a10cc4650efc87b12a9a6c537fe5 (patch) | |
tree | 52fff81c7bf41f6d8faa8ae5743ad5cf7d83de68 /src/layouts/base.layout.vue | |
parent | 35a376077116dd65b21f9a0786d2ecfc14db6051 (diff) | |
download | it-tools-5d8f46abf8d5a10cc4650efc87b12a9a6c537fe5.tar.gz it-tools-5d8f46abf8d5a10cc4650efc87b12a9a6c537fe5.tar.zst it-tools-5d8f46abf8d5a10cc4650efc87b12a9a6c537fe5.zip |
refactor(ui): change sponsor button location and caption
Diffstat (limited to '')
-rw-r--r-- | src/layouts/base.layout.vue | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/layouts/base.layout.vue b/src/layouts/base.layout.vue index ec42bd5..23e23d2 100644 --- a/src/layouts/base.layout.vue +++ b/src/layouts/base.layout.vue @@ -134,23 +134,24 @@ const menuOptions: MenuGroupOption[] = toolsByCategory.map((category) => ({ <search-bar /> + <navbar-buttons v-if="!styleStore.isSmallScreen" /> + <n-tooltip trigger="hover"> <template #trigger> <n-button + round type="primary" tag="a" href="https://github.com/sponsors/CorentinTh" rel="noopener" target="_blank" > - <n-icon v-if="!styleStore.isSmallScreen" :component="Heart" style="margin-right: 5px" /> - Sponsor + Buy me a coffee + <n-icon v-if="!styleStore.isSmallScreen" :component="Heart" style="margin-left: 5px" /> </n-button> </template> ❤ Support IT Tools development ! </n-tooltip> - - <navbar-buttons v-if="!styleStore.isSmallScreen" /> </div> <slot /> </template> |