Skip to content

Commit 093d24c

Browse files
fix: update recipes page padding and breakpoints
1 parent 3e247ce commit 093d24c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

app/recipes/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ export default async function Recipes() {
2020
const gridFormat: [string, number, number][] = [
2121
["xl", 1200, 4],
2222
["l", 1000, 3],
23-
["m", 400, 2],
23+
["m", 450, 2],
2424
["s", 200, 1],
2525
];
2626
const margin: [number, number] = [15, 15];
27-
const containerPadding: [number, number] = [15, 15];
27+
const containerPadding: [number, number] = [0, 0];
2828

2929
return (
3030
<div className="recipes-page">

styles/pages/_recipes.scss

+5
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,9 @@
22

33
.recipes-page {
44
@include wide-content;
5+
6+
padding-bottom: 1em;
7+
@media screen and (max-width: 75rem) {
8+
padding-bottom: 1em;
9+
}
510
}

0 commit comments

Comments
 (0)