Skip to content

Commit b261382

Browse files
fix(footer): switch useToken value to "md"
1 parent 2a32b66 commit b261382

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const Footer: React.FC<IProps> = () => {
5757

5858
const isPageRightToLeft = isLangRightToLeft(intl.locale as Lang)
5959

60-
const [smallBp] = useToken("breakpoints", ["sm"])
60+
const [medBp] = useToken("breakpoints", ["md"])
6161

6262
const linkSections: Array<LinkSection> = [
6363
{
@@ -329,7 +329,7 @@ const Footer: React.FC<IProps> = () => {
329329
"@media (max-width: 1300px)": {
330330
gridTemplateColumns: "repeat(3, auto)",
331331
},
332-
[`@media (max-width: ${smallBp})`]: {
332+
[`@media (max-width: ${medBp})`]: {
333333
gridTemplateColumns: "repeat(2, auto)",
334334
},
335335
"@media (max-width: 500px)": {

0 commit comments

Comments
 (0)