Skip to content

Commit 3d0079e

Browse files
Fix the Responsiveness
1 parent 6c8a433 commit 3d0079e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/components/Intro.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function Languages() {
2929
</svg>
3030
<h2 className="mb-4 text-xl font-semibold">Languages</h2>
3131
</div>
32-
<ul className="grid grid-cols-3 gap-3 md:grid-cols-3 lg:gap-5">
32+
<ul className="grid grid-cols-2 gap-3 md:grid-cols-3 lg:gap-5">
3333
{/* <ul className="grid grid-cols-2 gap-6 xl:gap-8"> */}
3434
<li className="mt-5 flex flex-col space-y-3 text-lg">
3535
<Link
@@ -135,7 +135,7 @@ function Frameworks() {
135135
</svg>
136136
<h2 className="mb-4 text-xl font-semibold">Dependencies Support</h2>
137137
</div>
138-
<ul className="grid grid-cols-3 gap-3 lg:gap-5">
138+
<ul className="grid grid-cols-2 gap-3 md:grid-cols-3 lg:gap-5">
139139
<li className="mt-5 flex flex-col space-y-3 text-lg">
140140
<Link
141141
to={useBaseUrl("/dependencies/mongo")}

src/components/Product.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl";
55
function UTG() {
66
return (
77
<div className="rounded-lg">
8-
<ul className="grid auto-cols-[300px] grid-flow-col gap-3 lg:gap-5">
8+
<ul className="grid grid-cols-1 gap-3 md:grid-cols-3 lg:gap-5">
99
<li className="mt-5 flex flex-col space-y-3 text-lg">
1010
<Link
1111
className="text-foreground-light flex-grow text-sm"
@@ -245,7 +245,7 @@ export const Products = () => {
245245
workflow:
246246
</p>
247247

248-
<div className="grid gap-4 sm:grid-cols-3 xl:gap-6">
248+
<div className="mt-4">
249249
<UTG />
250250
</div>
251251
</section>

src/components/QuickStart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {FaWindows, FaLinux, FaApple} from "react-icons/fa";
77
export const QuickStart = () => {
88
return (
99
<section className="mt-1">
10-
<h1 className="mb-4 text-4xl font-semibold tracking-wide md:text-4xl">
10+
<h1 className="mb-4 text-3xl font-semibold tracking-wide md:text-4xl">
1111
Welcome to Keploy Documentation! 🚀
1212
</h1>
1313
<p className="text-l max-w-3xl">

src/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ export default function Home() {
7777
)}
7878
</Head>
7979
<Layout
80-
className="mx-auto my-2 w-full max-w-screen-lg px-8 shadow-none"
80+
className="mx-auto my-2 w-full max-w-screen-lg px-4 md:px-8 shadow-none"
8181
title={`${siteConfig.title}`}
8282
description={`${siteConfig.tagline}`}
8383
>
84-
<main className="mx-auto max-w-screen-lg p-6 md:p-10">
84+
<main className="mx-auto max-w-screen-lg p-4 md:p-10">
8585
<QuickStart />
8686
{/* <Hacktoberfest /> */}
8787
{/*<GitTogether />*/}

0 commit comments

Comments
 (0)