Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#63 fix home page layout on mobile #67

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Home() {
return (
<div data-testid="home">
<div className="bg-[#310]">
<div className="Landing-Page-Banner-PC text-center lg:pt-40 pt-40 px-2">
<div className="Landing-Page-Banner-PC text-center lg:pt-40 md:pt-30 sm:pt-20 pt-10 px-2">
<div className="lg:text-7xl md:text-6xl sm:text-4xl text-3xl font-bold text-header">
บันทึกการประชุม
</div>
Expand All @@ -26,10 +26,10 @@ export default function Home() {
เรียนรู้เส้นทางการร่างรัฐธรรมนูญ และเปรียบเทียบบทบัญญัติของรัฐธรรมนูญแห่งราชอาณาจักรไทย<br></br>
พุทธศักราช 2560 กับร่างรัฐธรรมนูญที่มีการเสนอและแก้ไขเพิ่มเติมจากบันทึกการประชุม
</div>
<div className="text-lg text-white px-2 pt-8 block lg:hidden">
เรียนรู้ และเปรียบเทียบรัฐธรรมนูญฉบับปี 2560 <br></br>
พวกเค้าทำงานกันอย่างไร กฎหมายฉบับนี้ <br></br>
ออกมาเพื่อใคร หาคำตอบไปด้วยกัน
<div className="text-sm text-white px-2 pt-8 block lg:hidden">
ตอบทุกความสงสัยกว่าจะมาเป็นรัฐธรรมนูญแห่งราชอาณาจักรไทย พุทธศักราช 2560<br></br>
เรียนรู้เส้นทางการร่างรัฐธรรมนูญ และเปรียบเทียบบทบัญญัติของรัฐธรรมนูญแห่งราชอาณาจักรไทย<br></br>
พุทธศักราช 2560 กับร่างรัฐธรรมนูญที่มีการเสนอและแก้ไขเพิ่มเติมจากบันทึกการประชุม
</div>

<Link to="/search">
Expand All @@ -42,15 +42,15 @@ export default function Home() {
type="text"
id="search-input"
name="search-input"
className="flex-auto focus:outline-none"
className="flex-auto focus:outline-none w-full"
></input>
</div>
</div>
</div>
</Link>


<div className="text-neutral-400 text-center lg:py-8 py-40 text-header">
<div className="text-neutral-400 text-center lg:py-8 text-header">
<div className="flex justify-center">
<Icon icon="mingcute:up-line" className="text-4xl" />
</div>
Expand All @@ -62,7 +62,7 @@ export default function Home() {
</div>
</div>

<div className="bg-[#310] text-white flex justify-center">
<div className="bg-[#310] text-white flex justify-center pt-10 text-center">
<div className="text-3xl font-bold pt-4 w-3/4 text-header">ภาพรวม</div>
</div>

Expand Down
Loading