Skip to content

Commit 06f86e4

Browse files
committed
Pages spacing and alignment
1 parent 32692ae commit 06f86e4

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

src/components/AppBanner.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<template>
22
<!-- Banner start -->
33
<section
4-
class="flex flex-col sm:justify-between items-center sm:flex-row mt-12 sm:mt-2"
4+
class="flex flex-col sm:justify-between items-center sm:flex-row mt-12 sm:mt-10"
55
>
66
<div class="w-full sm:w-1/3 text-left">
77
<h1
8-
class="text-3xl sm:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase"
8+
class="text-3xl sm:text-4xl xl:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase"
99
>
1010
Hi, Iam Stoman
1111
</h1>
1212
<p
13-
class="mt-4 text-2xml sm:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400"
13+
class="mt-4 text-2xml sm:text-3xl xl:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400"
1414
>
1515
A Full-Stack Developer & Design Enthusiast
1616
</p>
@@ -29,7 +29,7 @@
2929
>
3030
</div>
3131
</div>
32-
<div class="w-full sm:w-2/3 text-right float-right mt-8 sm:mt-0">
32+
<div class="w-full sm:w-2/3 text-right float-right">
3333
<img
3434
v-if="theme === 'light'"
3535
src="@/assets/images/developer.svg"

src/components/ProjectSingle.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<router-link
33
to="/projects/single-project"
4-
class="rounded-3xl shadow-lg hover:shadow-xl cursor-pointer mb-10 sm:mb-0 bg-secondary-light dark:bg-ternary-dark"
4+
class="rounded-xl shadow-lg hover:shadow-xl cursor-pointer mb-10 sm:mb-0 bg-secondary-light dark:bg-ternary-dark"
55
aria-label="Single Project"
66
>
77
<div>

src/components/ProjectsGrid.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<!-- Projects start -->
3-
<section class="pt-20 sm:pt-28">
3+
<section class="pt-10 sm:pt-14">
44
<!-- Projects grid title start -->
55
<div class="text-center">
66
<p

src/views/Contact.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="container mx-auto sm:flex py-5 sm:py-10 mt-10 sm:mt-20">
2+
<div class="container mx-auto sm:flex py-5 sm:py-10 mt-5 sm:mt-10">
33
<!-- Contact form start -->
44
<ContactForm />
55
<!-- Contact form end -->

src/views/Home.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="container mx-auto">
33
<!-- Banner start -->
4-
<AppBanner />
4+
<AppBanner class="mb-5 sm:mb-8" />
55
<!-- Banner snd -->
66

77
<!-- Projects start -->

0 commit comments

Comments
 (0)