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.
1 parent ba10515 commit 27e89a0Copy full SHA for 27e89a0
src/components/Footer.tsx
@@ -345,17 +345,11 @@ const Footer: React.FC<IProps> = () => {
345
<SimpleGrid
346
gap={4}
347
justifyContent="space-between"
348
- gridTemplateColumns="repeat(6, auto)"
349
- sx={{
350
- "@media (max-width: 1300px)": {
351
- gridTemplateColumns: "repeat(3, auto)",
352
- },
353
- [`@media (max-width: ${medBp})`]: {
354
- gridTemplateColumns: "repeat(2, auto)",
355
356
- "@media (max-width: 500px)": {
357
- gridTemplateColumns: "auto",
358
+ templateColumns={{
+ base: "auto",
+ sm: "repeat(2, auto)",
+ md: "repeat(3, auto)",
+ xl: "repeat(6, auto)",
359
}}
360
>
361
{linkSections.map((section: LinkSection, idx) => (
0 commit comments