Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ ENV/

# Databases
*.db
*.db-shm
*.db-wal
*.sqlite3
db/*.db

Expand Down
5 changes: 3 additions & 2 deletions static/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
Place this at /static/css/base.css
*/

/* Make the page itself non-scrollable so only the guide area scrolls */
html, body { height: 100%; overflow: hidden; }
/* Make the page itself non-scrollable so only the guide area scrolls (only on guide page) */
body.guide-page { height: 100%; overflow: hidden; }
html { height: 100%; }

/* Authoritative Header + menus (single source of truth for site) */
body { font-family: Arial, sans-serif; margin:0; }
Expand Down
2 changes: 1 addition & 1 deletion templates/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
}
</style>
</head>
<body>
<body class="guide-page">
{% include '_header.html' %}

<!-- Player row: summary left, video right -->
Expand Down