diff --git a/packages/hoppscotch-app/assets/icons/folder-minus.svg b/packages/hoppscotch-app/assets/icons/folder-minus.svg deleted file mode 100644 index 21e0b7099..000000000 --- a/packages/hoppscotch-app/assets/icons/folder-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/hoppscotch-app/assets/icons/corner-down-left.svg b/packages/hoppscotch-app/assets/icons/folder-open.svg similarity index 62% rename from packages/hoppscotch-app/assets/icons/corner-down-left.svg rename to packages/hoppscotch-app/assets/icons/folder-open.svg index f7781ca6c..b60c4030b 100644 --- a/packages/hoppscotch-app/assets/icons/corner-down-left.svg +++ b/packages/hoppscotch-app/assets/icons/folder-open.svg @@ -1,4 +1,3 @@ - - - \ No newline at end of file + + diff --git a/packages/hoppscotch-app/assets/icons/logo.svg b/packages/hoppscotch-app/assets/icons/logo.svg new file mode 100644 index 000000000..c806ceb92 --- /dev/null +++ b/packages/hoppscotch-app/assets/icons/logo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/assets/icons/wrap-text.svg b/packages/hoppscotch-app/assets/icons/wrap-text.svg new file mode 100644 index 000000000..392a5d5ad --- /dev/null +++ b/packages/hoppscotch-app/assets/icons/wrap-text.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/packages/hoppscotch-app/components/app/Header.vue b/packages/hoppscotch-app/components/app/Header.vue index 264d97e3f..cfb25119d 100644 --- a/packages/hoppscotch-app/components/app/Header.vue +++ b/packages/hoppscotch-app/components/app/Header.vue @@ -5,7 +5,7 @@ >
@@ -17,21 +17,21 @@ v-tippy="{ theme: 'tooltip' }" :title="t('header.install_pwa')" svg="download" - class="rounded" + class="rounded hover:bg-primaryDark focus-visible:bg-primaryDark" @click.native="showInstallPrompt()" /> diff --git a/packages/hoppscotch-app/components/app/Shortcuts.vue b/packages/hoppscotch-app/components/app/Shortcuts.vue index da55b0c53..e563b128b 100644 --- a/packages/hoppscotch-app/components/app/Shortcuts.vue +++ b/packages/hoppscotch-app/components/app/Shortcuts.vue @@ -6,7 +6,7 @@ >

{{ t("app.shortcuts") }}

- +
diff --git a/packages/hoppscotch-app/components/button/Secondary.vue b/packages/hoppscotch-app/components/button/Secondary.vue index fac87b94e..7b2abbd85 100644 --- a/packages/hoppscotch-app/components/button/Secondary.vue +++ b/packages/hoppscotch-app/components/button/Secondary.vue @@ -3,10 +3,10 @@ :to="`${/^\/(?!\/).*$/.test(to) ? localePath(to) : to}`" :exact="exact" :blank="blank" - class="font-semibold py-2 transition inline-flex items-center justify-center whitespace-nowrap hover:bg-primaryDark focus:outline-none focus-visible:bg-primaryDark" + class="font-semibold py-2 transition inline-flex items-center justify-center whitespace-nowrap focus:outline-none" :class="[ color - ? `text-${color}-500 hover:(text-${color}-600 text-${color}-600)` + ? `text-${color}-500 hover:text-${color}-600 focus-visible:text-${color}-600` : 'text-secondary hover:text-secondaryDark focus-visible:text-secondaryDark', label ? 'rounded px-4' : 'px-2', { 'rounded-full': rounded }, @@ -18,7 +18,7 @@ outline, }, { - '!bg-primaryLight !hover:bg-primaryDark !focus-visible:bg-primaryDark': + 'bg-primaryLight hover:bg-primaryDark focus-visible:bg-primaryDark': filled, }, ]" diff --git a/packages/hoppscotch-app/components/collections/ImportExport.vue b/packages/hoppscotch-app/components/collections/ImportExport.vue index 454c8d5a6..bb1eaf8b2 100644 --- a/packages/hoppscotch-app/components/collections/ImportExport.vue +++ b/packages/hoppscotch-app/components/collections/ImportExport.vue @@ -10,7 +10,6 @@ v-if="mode == 'import_from_my_collections'" v-tippy="{ theme: 'tooltip' }" :title="$t('action.go_back')" - class="rounded" svg="arrow-left" @click.native=" () => { @@ -34,7 +33,6 @@ diff --git a/packages/hoppscotch-app/components/collections/graphql/Collection.vue b/packages/hoppscotch-app/components/collections/graphql/Collection.vue index 1f5de7a8c..fb692ab57 100644 --- a/packages/hoppscotch-app/components/collections/graphql/Collection.vue +++ b/packages/hoppscotch-app/components/collections/graphql/Collection.vue @@ -191,7 +191,7 @@ export default defineComponent({ getCollectionIcon() { if (this.isSelected) return "check-circle" else if (!this.showChildren && !this.isFiltered) return "folder" - else if (this.showChildren || this.isFiltered) return "folder-minus" + else if (this.showChildren || this.isFiltered) return "folder-open" else return "folder" }, }, diff --git a/packages/hoppscotch-app/components/collections/graphql/Folder.vue b/packages/hoppscotch-app/components/collections/graphql/Folder.vue index 6d6f4c19e..9584a6284 100644 --- a/packages/hoppscotch-app/components/collections/graphql/Folder.vue +++ b/packages/hoppscotch-app/components/collections/graphql/Folder.vue @@ -189,7 +189,7 @@ export default defineComponent({ getCollectionIcon() { if (this.isSelected) return "check-circle" else if (!this.showChildren && !this.isFiltered) return "folder" - else if (this.showChildren || this.isFiltered) return "folder-minus" + else if (this.showChildren || this.isFiltered) return "folder-open" else return "folder" }, }, diff --git a/packages/hoppscotch-app/components/collections/graphql/ImportExport.vue b/packages/hoppscotch-app/components/collections/graphql/ImportExport.vue index 50f1067e3..af9b0b251 100644 --- a/packages/hoppscotch-app/components/collections/graphql/ImportExport.vue +++ b/packages/hoppscotch-app/components/collections/graphql/ImportExport.vue @@ -12,7 +12,6 @@ diff --git a/packages/hoppscotch-app/components/collections/my/Collection.vue b/packages/hoppscotch-app/components/collections/my/Collection.vue index 74fe8078b..434ebee6a 100644 --- a/packages/hoppscotch-app/components/collections/my/Collection.vue +++ b/packages/hoppscotch-app/components/collections/my/Collection.vue @@ -218,7 +218,7 @@ export default defineComponent({ getCollectionIcon() { if (this.isSelected) return "check-circle" else if (!this.showChildren && !this.isFiltered) return "folder" - else if (this.showChildren || this.isFiltered) return "folder-minus" + else if (this.showChildren || this.isFiltered) return "folder-open" else return "folder" }, }, diff --git a/packages/hoppscotch-app/components/collections/my/Folder.vue b/packages/hoppscotch-app/components/collections/my/Folder.vue index 9cd319845..875588fae 100644 --- a/packages/hoppscotch-app/components/collections/my/Folder.vue +++ b/packages/hoppscotch-app/components/collections/my/Folder.vue @@ -204,7 +204,7 @@ export default defineComponent({ getCollectionIcon() { if (this.isSelected) return "check-circle" else if (!this.showChildren && !this.isFiltered) return "folder" - else if (this.showChildren || this.isFiltered) return "folder-minus" + else if (this.showChildren || this.isFiltered) return "folder-open" else return "folder" }, }, diff --git a/packages/hoppscotch-app/components/collections/teams/Collection.vue b/packages/hoppscotch-app/components/collections/teams/Collection.vue index 6dd853753..846443964 100644 --- a/packages/hoppscotch-app/components/collections/teams/Collection.vue +++ b/packages/hoppscotch-app/components/collections/teams/Collection.vue @@ -210,7 +210,7 @@ export default defineComponent({ getCollectionIcon() { if (this.isSelected) return "check-circle" else if (!this.showChildren && !this.isFiltered) return "folder" - else if (this.showChildren || this.isFiltered) return "folder-minus" + else if (this.showChildren || this.isFiltered) return "folder-open" else return "folder" }, }, diff --git a/packages/hoppscotch-app/components/collections/teams/Folder.vue b/packages/hoppscotch-app/components/collections/teams/Folder.vue index 2dd67644c..22abc3641 100644 --- a/packages/hoppscotch-app/components/collections/teams/Folder.vue +++ b/packages/hoppscotch-app/components/collections/teams/Folder.vue @@ -192,7 +192,7 @@ export default defineComponent({ getCollectionIcon() { if (this.isSelected) return "check-circle" else if (!this.showChildren && !this.isFiltered) return "folder" - else if (this.showChildren || this.isFiltered) return "folder-minus" + else if (this.showChildren || this.isFiltered) return "folder-open" else return "folder" }, }, diff --git a/packages/hoppscotch-app/components/docs/Folder.vue b/packages/hoppscotch-app/components/docs/Folder.vue index 3d0530f5d..cf04e3d91 100644 --- a/packages/hoppscotch-app/components/docs/Folder.vue +++ b/packages/hoppscotch-app/components/docs/Folder.vue @@ -1,7 +1,7 @@