fix: build

This commit is contained in:
liyasthomas
2021-08-05 19:43:46 +05:30
parent 20ffbe906f
commit 4b416586b7
6 changed files with 223 additions and 188 deletions

View File

@@ -359,16 +359,43 @@
class="
flex flex-col flex-1
text-secondaryLight
py-8
px-4
p-4
items-center
justify-center
"
>
<i class="opacity-75 pb-2 material-icons">send</i>
<span class="text-center">
{{ $t("waiting_send_req") }}
</span>
<div class="flex space-x-2 pb-8">
<div class="flex flex-col space-y-4 items-end">
<span class="flex flex-1 items-center">
{{ $t("shortcut.send_request") }}
</span>
<span class="flex flex-1 items-center">
{{ $t("shortcut.reset_request") }}
</span>
<span class="flex flex-1 items-center">
{{ $t("shortcut.show_all") }}
</span>
</div>
<div class="flex flex-col space-y-4">
<div class="flex">
<span class="shortcut-key">{{ getSpecialKey() }}</span>
<span class="shortcut-key">G</span>
</div>
<div class="flex">
<span class="shortcut-key">{{ getSpecialKey() }}</span>
<span class="shortcut-key">I</span>
</div>
<div class="flex">
<span class="shortcut-key">?</span>
</div>
</div>
</div>
<ButtonSecondary
:label="$t('documentation')"
to="https://docs.hoppscotch.io"
blank
outline
/>
</div>
</AppSection>
</Pane>
@@ -1291,3 +1318,14 @@ export default defineComponent({
},
})
</script>
<style lang="scss" scoped>
.shortcut-key {
@apply bg-dividerLight;
@apply rounded;
@apply ml-2;
@apply py-1;
@apply px-2;
@apply inline-flex;
}
</style>