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.
useToken
1 parent 2a32b66 commit b261382Copy full SHA for b261382
src/components/Footer.tsx
@@ -57,7 +57,7 @@ const Footer: React.FC<IProps> = () => {
57
58
const isPageRightToLeft = isLangRightToLeft(intl.locale as Lang)
59
60
- const [smallBp] = useToken("breakpoints", ["sm"])
+ const [medBp] = useToken("breakpoints", ["md"])
61
62
const linkSections: Array<LinkSection> = [
63
{
@@ -329,7 +329,7 @@ const Footer: React.FC<IProps> = () => {
329
"@media (max-width: 1300px)": {
330
gridTemplateColumns: "repeat(3, auto)",
331
},
332
- [`@media (max-width: ${smallBp})`]: {
+ [`@media (max-width: ${medBp})`]: {
333
gridTemplateColumns: "repeat(2, auto)",
334
335
"@media (max-width: 500px)": {
0 commit comments