Skip to content

Commit d61d029

Browse files
committed
fix(docs_page): prettier_issue
Signed-off-by: Akella Srinivas <alsrinivas.346@gmail.com>
1 parent a1bd6ea commit d61d029

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

src/components/Product.js

Lines changed: 1 addition & 1 deletion
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="product-grid grid auto-cols-[300px] gap-3 md:grid-flow-col lg:gap-5">
8+
<ul className="product-grid grid 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"

src/css/custom.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,12 +440,19 @@ td img {
440440
}
441441
}
442442

443-
@media screen and (max-width: 1000px) {
443+
.product-grid {
444+
grid-auto-columns: 100%;
445+
grid-auto-flow: row;
446+
}
447+
448+
@media screen and (min-width: 768px) {
444449
.product-grid {
445-
grid-template-columns: repeat(1, 1fr);
450+
grid-auto-columns: 300px;
451+
grid-auto-flow: column;
446452
}
447453
}
448454

455+
449456
.docs-image-legend-wrapper {
450457
width: 100%;
451458
margin: 0;

0 commit comments

Comments
 (0)