Skip to content

Commit a153ec4

Browse files
committed
fix(docs_page): mobile_view
1 parent 6a8ec1a commit a153ec4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/components/Product.js

Lines changed: 4 additions & 5 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-flow-row md:grid-flow-col md:auto-cols-[300px] gap-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"
@@ -239,17 +239,16 @@ function UTG() {
239239
export const Products = () => {
240240
return (
241241
<section className="mb-4 mt-12">
242-
<h2 className="mb-4 text-2xl font-semibold tracking-wide md:text-3xl">
242+
<div>
243+
<h2 className="mb-4 text-2xl font-semibold tracking-wide md:text-3xl">
243244
Products 🛠️
244245
</h2>
245246
<p className="text-l max-w-3xxl">
246247
Keploy provides three key products that help you streamline your testing
247248
workflow:
248249
</p>
249-
250-
<div className="grid gap-4 sm:grid-cols-3 xl:gap-6">
251-
<UTG />
252250
</div>
251+
<UTG />
253252
</section>
254253
);
255254
};

0 commit comments

Comments
 (0)