Fix margins on resource pages

Add max-width constraints to map and search input to match Tufte CSS
standard width (55%) and prevent content from stretching to edges.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-20 17:14:55 -05:00
parent 1721ce3662
commit 2e15a8205e
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -9,8 +9,9 @@
<style>
.map-container {
width: 100%;
max-width: 55%;
height: 500px;
margin: 2rem 0;
margin: 2rem auto;
border: 1px solid #ccc;
}
+1 -1
View File
@@ -11,7 +11,7 @@
.search-input {
width: 100%;
max-width: 600px;
max-width: 55%;
padding: 0.75rem;
font-size: 1.1rem;
border: 1px solid #ccc;