Skip to content

Commit

Permalink
styles: seo url, font-size and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
preschian committed Sep 27, 2023
1 parent c22afd7 commit 6a71a18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions components/create/CreateLanding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div v-if="route.query?.select !== 'nft'" class="pack">
<nuxt-link class="pack-box" to="/create/collection">
<div class="pack-content">
<NeoIcon icon="image-polaroid" size="large" />
<NeoIcon icon="image-polaroid" custom-size="fa-3x" />
<div class="pack-content-text">
<p class="is-size-4 has-text-weight-bold">Collection</p>
<p>{{ $t('mint.landing.collection') }}</p>
Expand All @@ -18,7 +18,7 @@
class="pack-box"
@click="router.push({ query: { select: 'nft' } })">
<div class="pack-content">
<NeoIcon icon="gem" size="large" />
<NeoIcon icon="gem" custom-size="fa-3x" />
<div class="pack-content-text">
<p class="is-size-4 has-text-weight-bold">NFT</p>
<p>{{ $t('mint.landing.nft') }}</p>
Expand All @@ -30,7 +30,7 @@
<div v-else class="pack">
<nuxt-link class="pack-box" to="/create/nft">
<div class="pack-content">
<NeoIcon icon="image" size="large" />
<NeoIcon icon="image" custom-size="fa-3x" />
<div class="pack-content-text">
<p class="is-size-4 has-text-weight-bold">
{{ $t('mint.landing.singleNft') }}
Expand All @@ -41,7 +41,7 @@
</nuxt-link>
<nuxt-link class="pack-box" :to="`/${urlPrefix}/massmint`">
<div class="pack-content">
<NeoIcon icon="photo-film" size="large" />
<NeoIcon icon="photo-film" custom-size="fa-3x" />
<div class="pack-content-text">
<p class="is-size-4 has-text-weight-bold">
{{ $t('mint.landing.massNft') }}
Expand Down Expand Up @@ -94,6 +94,7 @@ const router = useRouter()
&-box {
cursor: pointer;
font-size: unset;
padding: 4rem 2rem;
@include ktheme() {
Expand Down
2 changes: 1 addition & 1 deletion pages/_prefix/create/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default {
title,
type: 'article',
description: 'Create carbonless NFTs with low on-chain fees',
url: '/create/nft',
url: '/create',
image: `${this.$config.public.baseUrl}/k_card.png`,
}
return {
Expand Down

0 comments on commit 6a71a18

Please sign in to comment.