refactor: request section

This commit is contained in:
liyasthomas
2021-07-10 18:45:39 +05:30
parent c7062ad613
commit d94c8aec51
17 changed files with 2461 additions and 2307 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -343,6 +343,7 @@
py-3
text-xs
flex flex-1
font-medium
bg-primaryLight
focus:outline-none
"
@@ -420,16 +421,27 @@
</SmartTab>
</div>
</SmartTabs>
<p
<div
v-if="
queryFields.length === 0 &&
mutationFields.length === 0 &&
subscriptionFields.length === 0 &&
graphqlTypes.length === 0
"
class="
flex
items-center
text-secondaryLight
flex-col
p-4
justify-center
"
>
{{ $t("send_request_first") }}
</p>
<i class="material-icons opacity-50 pb-2">description</i>
<span class="text-xs">
{{ $t("send_request_first") }}
</span>
</div>
</AppSection>
</SmartTab>

10
pages/home.vue Normal file
View File

@@ -0,0 +1,10 @@
<template>
<div class="flex flex-col space-y-16">
<LandingHero />
<LandingStats />
<LandingUsers />
<LandingFeatures />
<LandingCTA />
<LandingFooter />
</div>
</template>

File diff suppressed because it is too large Load Diff