Skip to content

Commit 4b76667

Browse files
committed
Contact ui updates
1 parent 623dd23 commit 4b76667

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

src/components/AppBanner.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
class="flex flex-col sm:justify-between items-center sm:flex-row mt-12 sm:mt-10"
55
>
66
<!-- Banner left contents -->
7-
<div class="w-full sm:w-1/3 text-left">
7+
<div class="w-full md:w-1/3 text-left">
88
<h1
9-
class="text-3xl sm:text-4xl xl:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase"
9+
class="text-3xl md:text-4xl xl:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase"
1010
>
1111
Hi, Iam Stoman
1212
</h1>
1313
<p
14-
class="mt-4 text-2xml sm:text-3xl xl:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400"
14+
class="mt-4 text-xl md:text-2xl xl:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400"
1515
>
1616
A Full-Stack Developer & Design Enthusiast
1717
</p>
@@ -32,7 +32,7 @@
3232
</div>
3333

3434
<!-- Banner right illustration -->
35-
<div class="w-full sm:w-2/3 text-right float-right">
35+
<div class="w-full md:w-2/3 text-right float-right">
3636
<img
3737
v-if="theme === 'light'"
3838
src="@/assets/images/developer.svg"

src/components/ContactDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<!-- Contact details -->
3-
<div class="w-full sm:w-1/2">
3+
<div class="w-full md:w-1/2">
44
<div class="text-left max-w-xl px-6">
55
<h2
66
class="text-2xl text-primary-dark dark:text-primary-light font-semibold mt-12 mb-8"

src/components/ContactForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<!-- Contact form -->
3-
<div class="w-full sm:w-1/2">
3+
<div class="w-full md:w-1/2">
44
<div class="leading-loose">
55
<form
66
class="max-w-xl m-4 p-6 sm:p-10 bg-secondary-light dark:bg-secondary-dark rounded-xl shadow-xl text-left"

src/views/Contact.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<template>
2-
<div class="container mx-auto sm:flex py-5 sm:py-10 mt-5 sm:mt-10">
2+
<div
3+
class="container mx-auto flex flex-col-reverse md:flex-row py-5 md:py-10 md:mt-10"
4+
>
35
<!-- Contact form -->
46
<ContactForm />
57

0 commit comments

Comments
 (0)