We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 34f3fec + 926fd0d commit a0fb188Copy full SHA for a0fb188
src/components/Footer.tsx
@@ -343,17 +343,11 @@ const Footer: React.FC<IProps> = () => {
343
<SimpleGrid
344
gap={4}
345
justifyContent="space-between"
346
- gridTemplateColumns="repeat(6, auto)"
347
- sx={{
348
- "@media (max-width: 1300px)": {
349
- gridTemplateColumns: "repeat(3, auto)",
350
- },
351
- [`@media (max-width: ${medBp})`]: {
352
- gridTemplateColumns: "repeat(2, auto)",
353
354
- "@media (max-width: 500px)": {
355
- gridTemplateColumns: "auto",
356
+ templateColumns={{
+ base: "auto",
+ sm: "repeat(2, auto)",
+ md: "repeat(3, auto)",
+ xl: "repeat(6, auto)",
357
}}
358
>
359
{linkSections.map((section: LinkSection, idx) => (
0 commit comments