Skip to content

Commit 731a692

Browse files
committed
auth page improvements
1 parent a7e7b81 commit 731a692

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/components/Hero/HeroProduct.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ defineProps<{
1010

1111
<template>
1212
<div class="pb-32" v-if="product">
13-
<Flex col class="mx-auto max-w-6xl text-left lg:text-left gap-10 mt-32 relative px-4 lg:flex-row">
13+
<Flex col class="mx-auto max-w-6xl text-left lg:text-left gap-10 mt-28 sm:mt-32 relative md:px-4 lg:flex-row">
1414
<Flex col items-center class="lg:items-start gap-12 flex-1">
15-
<Text size="3xl">{{ product.description }}</Text>
15+
<Text size="2xl" class="text-balance md:text-3xl text-center md:text-left">{{ product.description }}</Text>
1616

1717
<div>
1818
<NuxtImg :src="product.logo" class="w-96"/>
@@ -22,14 +22,14 @@ defineProps<{
2222
{{ product.longDescription }}
2323
</Text>
2424

25-
<div class="flex gap-4">
25+
<Flex col class="sm:flex-row gap-4 w-full justify-center lg:justify-start">
2626
<NuxtLink v-if="product.link" :to="product.link" class="btn btn-lg bg-primary-content text-neutral hover:bg-primary-content/80">
2727
Get Started
2828
</NuxtLink>
2929
<NuxtLink v-if="product.meta.docLink" :to="product.meta.docLink" class="btn btn-lg bg-neutral">
3030
Documentation
3131
</NuxtLink>
32-
</div>
32+
</Flex>
3333
</Flex>
3434

3535
<Flex class="relative flex-1">

app/pages/auth/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ useSeoMeta({
2828

2929
<template>
3030
<div class="bg-[url('/img/top_background.svg')] bg-no-repeat bg-cover bg-center text-base-content max-w-screen overflow-x-hidden">
31-
<div class="relative mx-auto max-w-[82rem] lg:drawer-open pt-16 px-4">
31+
<div class="relative mx-auto max-w-[82rem] lg:drawer-open sm:pt-16 px-4">
3232
<HeroProduct
3333
v-if="authProduct"
3434
:product="authProduct"

0 commit comments

Comments
 (0)