Skip to content

Commit 622e15c

Browse files
committed
adjust font sizes and layout for improved responsiveness in Header and LandingPage components
1 parent aa9530b commit 622e15c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/components/Header/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Header = (props: Props) => {
2323
loading="lazy"
2424
/>
2525
</Link>
26-
<span className="text-sm font-bold tracking-widest">Octasol Beta</span>
26+
<span className="text-xs font-bold tracking-widest">Octasol Beta</span>
2727
</div>
2828
<div className="flex items-center gap-6">
2929
<Login />

src/components/LandingPage/index.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function LandingPage() {
3636
<>
3737
<main className="w-full flex flex-col gap-12 md:gap-24 pt-[80px]">
3838
{/* Link */}
39-
<div className="fixed z-20 w-fit h-fit right-[-140px] top-1/2 -rotate-90 flex justify-center items-center gap-6">
39+
<div className="fixed z-[1000] w-fit h-fit right-[-140px] top-1/2 -rotate-90 flex justify-center items-center gap-6">
4040
<Link
4141
href="https://discord.gg/zQGv8RD8cx"
4242
target="_blank"
@@ -487,7 +487,7 @@ export default function LandingPage() {
487487
height={800}
488488
/>
489489

490-
<div className="container flex flex-col md:flex-row justify-center items-center gap-8 z-20 py-12">
490+
<div className="container flex flex-col md:flex-row justify-center items-center gap-16 md:gap-8 z-20 py-12">
491491
<div className="w-full md:w-1/2 flex flex-col gap-10 h-full">
492492
<p className="text-5xl lg:text-7xl font-extrabold ">
493493
Meet Our
@@ -505,7 +505,7 @@ export default function LandingPage() {
505505
</p>
506506
</div>
507507
<div className="w-full md:w-1/2 h-full ">
508-
<div className="grid grid-rows-3 gap-12 md:gap-32 place-items-end">
508+
<div className="grid grid-rows-3 gap-12 md:gap-32 place-items-start md:place-items-end">
509509
<div className="flex flex-col gap-5 relative md:right-[16px]">
510510
<div className="flex gap-5 items-center font-extrabold text-3xl text-[#97F4E4] ">
511511
<Link

src/components/Login/Login.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ const Login = () => {
248248
)}
249249
{status === "unauthenticated" && (
250250
<button onClick={userLogin} className="py-2 outline-none border-0 ring-0">
251-
<span className="text-sm md:text-base ">
251+
<span className="text-xs md:text-base ">
252252
Sign in with GitHub&nbsp;
253253
</span>
254254
<span className="pt-[2px]">&gt;</span>

0 commit comments

Comments
 (0)