Skip to content

Commit

Permalink
fix: tickets and wallet page css
Browse files Browse the repository at this point in the history
  • Loading branch information
1Mateus committed Dec 22, 2023
1 parent 8f83de7 commit e5b4b61
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 42 deletions.
2 changes: 2 additions & 0 deletions front/chains/kadena/adapters/xwallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ export const provider = defineStore({
}
})

console.log('signedCmd', cmd)

callbackProgress('Awaiting TX results...')

return await sendSigned(cmd)
Expand Down
8 changes: 4 additions & 4 deletions front/components/Pages/Wallet/CommuniDocs.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<Section
<UISection
class="
pt-[40px]
md:pt-[60px]
Expand All @@ -9,8 +9,8 @@
lg:space-y-[0]
"
>
<LandingDocumentation />
<PagesWalletDocumentation />

<LandingCommunity />
</Section>
<PagesWalletCommunity />
</UISection>
</template>
6 changes: 3 additions & 3 deletions front/components/Pages/Wallet/Community.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const config = useAppConfig()
</script>

<template>
<Container id="community" class="flex-1">
<UIContainer id="community" class="flex-1">
<template #tag>
<span class="block mb-2.5 sm:mb-[18px] lg:mb-[18px]">
Community
Expand Down Expand Up @@ -43,7 +43,7 @@ const config = useAppConfig()

<template #cta>
<div class="flex gap-6 lg:flex-wrap xl:flex-nowrap">
<IconButton
<UIIconButton
v-for="(
{ icon, title, to }, i
) in config.networks"
Expand All @@ -70,5 +70,5 @@ const config = useAppConfig()
/>
</div>
</template>
</Container>
</UIContainer>
</template>
4 changes: 2 additions & 2 deletions front/components/Pages/Wallet/Documentation.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<Container
<UIContainer
to="https://docs.tickets.opact.io/"
id="documentation"
cta="Opact Documentation"
Expand Down Expand Up @@ -37,5 +37,5 @@
Explore the inner workings of Opact.
</span>
</template>
</Container>
</UIContainer>
</template>
18 changes: 10 additions & 8 deletions front/components/Pages/Wallet/Hero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const config = useAppConfig()
2xl:h-[880px]
"
>
<Section
<UISection
class="
flex flex-col
lg:relative lg:overflow-visible
Expand Down Expand Up @@ -58,10 +58,12 @@ const config = useAppConfig()
mx-auto
lg:mx-0
xl:mx-0
font-poppins
opacity-0
text-white text-center
lg:text-left
font-title
font-[700]
xl:font-[700]
lg:font-semibold
pb-[8px]
Expand All @@ -74,7 +76,7 @@ const config = useAppConfig()
md:tracking-[0.05rem]
lg:tracking-[0.09rem]
xl:tracking-[0.06rem]
text-3xl-poppins-xs
text-[32px]
sm:text-[48px]
md:font-[700]
lg:text-[50px]
Expand All @@ -94,9 +96,9 @@ const config = useAppConfig()
z-[2]
mx-auto
lg:mx-0
sm:text-xl
sm:text-[20px]
opacity-0
lg:text-xl
lg:text-[20px]
sm:leading-[30px]
lg:leading-[30px]
text-sm-hero text-white text-center
Expand Down Expand Up @@ -251,9 +253,9 @@ const config = useAppConfig()
/>
</figure>
</div>
</Section>
</UISection>

<Section class="z-[1] space-y-4 relative">
<UISection class="z-[1] space-y-4 relative">
<div
v-motion
:initial="{
Expand Down Expand Up @@ -303,14 +305,14 @@ const config = useAppConfig()
xl:space-x-4
"
>
<LandingBlockchain
<PagesWalletBlockchain
v-for="{ icon, name } in config.chains"
:key="`landing-blockchain-label-${name}`"
:icon="icon"
:name="name"
/>
</div>
</div>
</Section>
</UISection>
</div>
</template>
16 changes: 8 additions & 8 deletions front/components/Pages/Wallet/Privacy.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<Section
<UISection
id="privacy"
class="
pt-[40px]
Expand Down Expand Up @@ -88,9 +88,9 @@
md:space-x-[8px]
"
>
<Badge> P2P Private transactions </Badge>
<UIBadge> P2P Private transactions </UIBadge>

<Badge> DeFi Private transactions </Badge>
<UIBadge> DeFi Private transactions </UIBadge>
</div>
</div>

Expand Down Expand Up @@ -136,10 +136,10 @@
sm:leading-[30px]
lg:leading-[30px]
xl:leading-[30px]
text-lg-xs
sm:text-xl
lg:text-xl
xl:text-xl
text-[18px]
sm:text-[20px]
lg:text-[20px]
xl:text-[20px]
mb-8
sm:mb-[42px]
lg:mb-12
Expand All @@ -161,5 +161,5 @@
class="lg:h-8 xl:h-[39px]"
/>
</div>
</Section>
</UISection>
</template>
8 changes: 4 additions & 4 deletions front/components/Pages/Wallet/Security.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<Section
<UISection
id="security"
class="pt-[40px] md:pt-[60px] lg:pt-20"
>
<Container cta="Learn more" size="xl" disabled>
<UIContainer cta="Learn more" size="xl" disabled>
<template #before>
<div
class="
Expand Down Expand Up @@ -112,6 +112,6 @@
privacy.
</span>
</template>
</Container>
</Section>
</UIContainer>
</UISection>
</template>
6 changes: 3 additions & 3 deletions front/components/UI/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const variants: Variants = {
parent:
'bg-card-gradient p-[2px] inline-flex items-center justify-center h-[44px] md:h-[50px]',
children: `bg-inverted-card-gradient w-full h-full flex items-center justify-center
sm:text-lg
sm:text-[18px]
sm:font-medium
sm:leading-[27px]
`
Expand All @@ -80,7 +80,7 @@ const variants: Variants = {
children: `bg-dark-blue w-full h-full flex items-center justify-center
lg:px-[22px]
sm:text-lg
sm:text-[18px]
sm:font-medium
sm:leading-[27px]
`
Expand Down Expand Up @@ -190,7 +190,7 @@ const tag = computed(() =>
px-[22px]
rounded-[100px]
sm:px-[24px]
sm:text-lg
sm:text-[18px]
sm:font-medium
sm:leading-[27px]
xl:w-max
Expand Down
4 changes: 2 additions & 2 deletions front/components/UI/Container.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ const sizes = {
sm:text-lg sm:font-[900] sm:leading-[27px]
`,
title: `
text-2xl-poppins
font-poppins
sm:text-[32px] sm:leading-[40px]
md:text-[40px] md:font-semibold md:leading-[60px]
lg:text-[32px] lg:leading-[48px]
`,
text: `
sm:text-xl sm:font-medium sm:leading-[30px]
sm:text-[20px] sm:font-medium sm:leading-[30px]
`
}
}
Expand Down
2 changes: 0 additions & 2 deletions front/pages/tickets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,5 @@ useHead({
<PagesTicketsFeatures />

<PagesTicketsCommuniDocs />

<!-- <PagesTicketsContact /> -->
</div>
</template>
12 changes: 6 additions & 6 deletions front/pages/wallet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ useHead({
</script>

<template>
<PagesLandingHero />
<div>
<PagesWalletHero />

<PagesLandingPrivacy />
<PagesWalletPrivacy />

<PagesLandingSecurity />
<PagesWalletSecurity />

<PagesLandingCommuniDocs />

<!-- <PagesLandingContact /> -->
<PagesWalletCommuniDocs />
</div>
</template>

0 comments on commit e5b4b61

Please sign in to comment.