Skip to content

Commit 9d1af70

Browse files
committed
Design improvements
1 parent 991553b commit 9d1af70

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

refactor/src/components/Checkout/CheckoutForm.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ const CheckoutForm = () => {
144144
) : (
145145
<>
146146
{!cart && !orderCompleted && (
147-
<h1 className="text-2xl m-12 mt-32 font-bold text-center">
147+
<h1 className="text-2xl m-12 mt-24 font-bold text-center">
148148
Ingen produkter i handlekurven
149149
</h1>
150150
)}
151151
{orderCompleted && (
152-
<div className="container h-24 m-12 mx-auto mt-32 text-xl text-center">
152+
<div className="container h-24 m-12 mx-auto mt-24 text-xl text-center">
153153
Takk for din ordre!
154154
</div>
155155
)}

refactor/src/components/Layout/PageTitle.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const PageTitle = ({ title, marginLeft }: IPageTitleProps) => (
1414
<section
1515
className={`container ${
1616
marginLeft ? 'pl-8' : 'pl-4'
17-
} pl-4 mx-auto mt-32 text-center bg-white`}
17+
} pl-4 mx-auto mt-24 text-center bg-white`}
1818
>
1919
<span className="py-2 text-2xl font-bold tracking-wide text-center text-gray-800 no-underline uppercase hover:no-underline">
2020
{title}

0 commit comments

Comments
 (0)