Skip to content

Commit ccdabae

Browse files
committed
better installed experience
1 parent f17cb08 commit ccdabae

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

app/components/ui/hamburger-menu.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
7373
animation: slideIn 0.3s ease forwards;
7474
border: 2px solid var(--title);
75+
z-index: 1000;
7576
}
7677

7778
/* Mobile: Full screen takeover */

app/styles/app.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ html {
1212
padding: 0;
1313
margin: 0;
1414
font-family: Montserrat, -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
15+
background: var(--theme-fall-beige);
1516
}
1617

1718
/* 1. Default Light Mode */
@@ -122,6 +123,10 @@ body {
122123

123124
/* 2. System Dark Mode (Automatic) */
124125
@media (prefers-color-scheme: dark) {
126+
html {
127+
background: var(--theme-fall-black);
128+
}
129+
125130
body {
126131
--bg-sky: var(--dark-theme-sky);
127132
--color-hill-back: var(--dark-theme-hill-back);
@@ -144,6 +149,10 @@ body {
144149
}
145150

146151
/* 3. Manual Overrides (Highest Priority) */
152+
html.light-mode {
153+
background: var(--theme-fall-beige);
154+
}
155+
147156
body.light-mode {
148157
--bg-sky: var(--light-theme-sky);
149158
--color-hill-back: var(--light-theme-hill-back);
@@ -164,6 +173,10 @@ body.light-mode {
164173
background: #fff;
165174
}
166175

176+
html.dark-mode {
177+
background: var(--theme-fall-black);
178+
}
179+
167180
body.dark-mode {
168181
--bg-sky: var(--dark-theme-sky);
169182
--color-hill-back: var(--dark-theme-hill-back);

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<title>The Bandits</title>
6-
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
77
<meta name="description"
88
content="Find Your Trail Friends! The Bandits are a Trail Running Community based in the SF Bay Area. Join us for group runs, social events, and more.">
99

0 commit comments

Comments
 (0)