Skip to content

Commit 3e247ce

Browse files
feat: update about page breakpoints, flex in single column, and style
1 parent 62ed88b commit 3e247ce

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

app/about/page.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default function About() {
1919

2020
const gridFormat: [string, number, number][] = [
2121
["xl", 1200, 4],
22-
["l", 900, 3],
23-
["m", 600, 2],
22+
["l", 950, 3],
23+
["m", 650, 2],
2424
["s", 200, 1],
2525
];
2626
const margin: [number, number] = [15, 15];
@@ -61,6 +61,7 @@ export default function About() {
6161
margin={margin}
6262
containerPadding={containerPadding}
6363
sizes={sizes}
64+
flexInSingleColumn={true}
6465
>
6566
{sortedSnippets.map((snippet: AboutSnippet) => {
6667
var WrappedLogo = snippet.link ? (

styles/pages/_about.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
display: none;
6262
}
6363

64-
@media (min-width: 40rem) {
64+
@media (min-width: 50rem) {
6565
margin: 0 10em;
6666
margin-bottom: 2em;
6767
}

0 commit comments

Comments
 (0)