fix header spacing

This commit is contained in:
Kishan Takoordyal 2021-03-04 20:31:46 +04:00
parent 263eb91c03
commit f38203a1bd
No known key found for this signature in database
GPG Key ID: 304DF64F0804D6A1

View File

@ -10,7 +10,7 @@ export default function HeaderD({
setShowCookies, setShowCookies,
}) { }) {
const headerLinkClasses = const headerLinkClasses =
'text-gray-100 font-avenirbook font-normal hover:underline focus:underline text-lg'; 'text-gray-100 font-avenirbook font-normal hover:underline focus:underline text-lg mx-4';
const cookies = ( const cookies = (
<div className="w-full h-20 bg-indigo-1000 flex items-center justify-center z-10 fixed bottom-0"> <div className="w-full h-20 bg-indigo-1000 flex items-center justify-center z-10 fixed bottom-0">
@ -44,7 +44,7 @@ export default function HeaderD({
className="h-full object-scale-down" className="h-full object-scale-down"
/> />
<div className="w-2/5 h-full flex items-center justify-between"> <div className="h-full flex items-center justify-end">
<a className={headerLinkClasses} href="/"> <a className={headerLinkClasses} href="/">
About About
</a> </a>
@ -94,7 +94,9 @@ export default function HeaderD({
<a <a
href="#part-one" href="#part-one"
className="w-12 h-12 flex justify-center items-center text-4xl text-gray-200 ri-arrow-down-fill rounded-full border hover:border-white border-transparent mb-22" className="w-12 h-12 flex justify-center items-center text-4xl text-gray-200 ri-arrow-down-fill rounded-full border hover:border-white border-transparent mb-22"
/> >
{' '}
</a>
</div> </div>
{showCookies && cookies} {showCookies && cookies}