File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl";
55function 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"
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments