fix(ui): render shared header full-width on corporate memory pages (#117)
Move {% include '_app_header.html' %} out of .container-memory (max-width: 1000px)
in corporate_memory.html and corporate_memory_admin.html so the header spans the
viewport, matching dashboard.html. Page content stays constrained by the container.
This commit is contained in:
parent
e1108b6112
commit
1baadd172e
3 changed files with 10 additions and 6 deletions
|
|
@ -10,6 +10,10 @@ CalVer image tags (`stable-YYYY.MM.N`, `dev-YYYY.MM.N`) are produced for every C
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Corporate memory pages (`/corporate-memory`, `/corporate-memory/admin`) now render the shared app header at full viewport width, matching the dashboard. Previously the `_app_header.html` include sat inside `.container-memory` (max-width: 1000px) and was cropped on wide viewports.
|
||||
|
||||
## [0.15.0] — 2026-04-29
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -562,10 +562,10 @@
|
|||
{% include '_theme.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<div class="container-memory">
|
||||
<!-- Header -->
|
||||
{% include '_app_header.html' %}
|
||||
<!-- Header (outside container so it spans full viewport, matching dashboard) -->
|
||||
{% include '_app_header.html' %}
|
||||
|
||||
<div class="container-memory">
|
||||
<!-- Stats Bar -->
|
||||
<div class="stats-bar">
|
||||
<div class="stat-item">
|
||||
|
|
|
|||
|
|
@ -840,10 +840,10 @@
|
|||
{% include '_theme.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<div class="container-memory">
|
||||
<!-- Header -->
|
||||
{% include '_app_header.html' %}
|
||||
<!-- Header (outside container so it spans full viewport, matching dashboard) -->
|
||||
{% include '_app_header.html' %}
|
||||
|
||||
<div class="container-memory">
|
||||
<!-- Stats Bar -->
|
||||
<div class="stats-bar">
|
||||
<div class="stat-item highlight">
|
||||
|
|
|
|||
Loading…
Reference in a new issue