We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e247ce commit 093d24cCopy full SHA for 093d24c
app/recipes/page.tsx
@@ -20,11 +20,11 @@ export default async function Recipes() {
20
const gridFormat: [string, number, number][] = [
21
["xl", 1200, 4],
22
["l", 1000, 3],
23
- ["m", 400, 2],
+ ["m", 450, 2],
24
["s", 200, 1],
25
];
26
const margin: [number, number] = [15, 15];
27
- const containerPadding: [number, number] = [15, 15];
+ const containerPadding: [number, number] = [0, 0];
28
29
return (
30
<div className="recipes-page">
styles/pages/_recipes.scss
@@ -2,4 +2,9 @@
2
3
.recipes-page {
4
@include wide-content;
5
+
6
+ padding-bottom: 1em;
7
+ @media screen and (max-width: 75rem) {
8
9
+ }
10
}
0 commit comments