diff --git a/src/routes/FoodPage.tsx b/src/routes/FoodPage.tsx
index c49abd2..d74d3c9 100644
--- a/src/routes/FoodPage.tsx
+++ b/src/routes/FoodPage.tsx
@@ -55,13 +55,19 @@ export default function FoodPage() {
}
};
- const GridBox = styled(Box)(() => ({
- width: "24%",
+ const GridBox = styled(Box)(({ theme }) => ({
+ width: 80,
+ padding: 10,
aspectRatio: 2,
- borderRadius: ".25em",
display: "flex",
justifyContent: "center",
alignItems: "center",
+ fontFamily: "Sans",
+ [theme.breakpoints.up('md')]: {
+ width: 200,
+ fontSize: '1.125rem',
+ fontWeight: '400'
+ },
}));
const ImgBox = styled(Box)(() => ({
@@ -71,18 +77,17 @@ export default function FoodPage() {
minWidth: 100,
aspectRatio: 1,
mx: "0.5em",
-
- }));
+ }));
const renderMonths = () => {
return months.map((month) => {
let userNumber = Number(month) + 1;
return (
-
- {t(`month_${month}`)}
+
+ {t(`month_${month}`)}
+
-
);
});
};
@@ -125,12 +130,11 @@ export default function FoodPage() {
{t("FoodPage_monthsInSeason")}