Skip to content

Commit 7d61eed

Browse files
fix(responsive): add intermediate breakpoints for smoother horizontal margin scaling
1 parent 0983e97 commit 7d61eed

4 files changed

Lines changed: 22 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.2] - 2025-12-01
9+
10+
### Fixed
11+
12+
- Responsive horizontal margins now scale smoothly across existing intermediate breakpoints (xl, lg) to prevent excessively large margins on tablets and narrow desktop windows. (#3)
13+
814
## [1.2.1] - 2025-12-01
915

1016
### Changed

public/content/pages/body-of-work.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Body of Work"
33
slug: "body-of-work"
4-
date: 2025-11-30T20:31:17.885Z
4+
date: 2025-12-01T06:26:47.137Z
55
---
66

77
### January 1826

public/sitemap.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,43 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://ode-demo.vercel.app/</loc>
5-
<lastmod>2025-11-30</lastmod>
5+
<lastmod>2025-12-01</lastmod>
66
<changefreq>daily</changefreq>
77
<priority>1.0</priority>
88
</url>
99
<url>
1010
<loc>https://ode-demo.vercel.app/about</loc>
11-
<lastmod>2025-11-30</lastmod>
11+
<lastmod>2025-12-01</lastmod>
1212
<changefreq>weekly</changefreq>
1313
<priority>0.8</priority>
1414
</url>
1515
<url>
1616
<loc>https://ode-demo.vercel.app/body-of-work</loc>
17-
<lastmod>2025-11-30</lastmod>
17+
<lastmod>2025-12-01</lastmod>
1818
<changefreq>weekly</changefreq>
1919
<priority>0.8</priority>
2020
</url>
2121
<url>
2222
<loc>https://ode-demo.vercel.app/references</loc>
23-
<lastmod>2025-11-30</lastmod>
23+
<lastmod>2025-12-01</lastmod>
2424
<changefreq>weekly</changefreq>
2525
<priority>0.8</priority>
2626
</url>
2727
<url>
2828
<loc>https://ode-demo.vercel.app/reach-out</loc>
29-
<lastmod>2025-11-30</lastmod>
29+
<lastmod>2025-12-01</lastmod>
3030
<changefreq>weekly</changefreq>
3131
<priority>0.8</priority>
3232
</url>
3333
<url>
3434
<loc>https://ode-demo.vercel.app/reader/Essays</loc>
35-
<lastmod>2025-11-30</lastmod>
35+
<lastmod>2025-12-01</lastmod>
3636
<changefreq>weekly</changefreq>
3737
<priority>0.7</priority>
3838
</url>
3939
<url>
4040
<loc>https://ode-demo.vercel.app/reader/Metamorphosis</loc>
41-
<lastmod>2025-11-30</lastmod>
41+
<lastmod>2025-12-01</lastmod>
4242
<changefreq>weekly</changefreq>
4343
<priority>0.7</priority>
4444
</url>

src/styles/global.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ body {
66
margin: 2rem 16rem;
77
@include mixins.theme(light);
88

9+
@include mixins.respond-to-max(xl) {
10+
margin: 2rem 8rem;
11+
}
12+
13+
@include mixins.respond-to-max(lg) {
14+
margin: 2rem 4rem;
15+
}
16+
917
@include mixins.respond-to-max(md) {
1018
margin: 1rem 2rem;
1119
}

0 commit comments

Comments
 (0)