Fix sidebar scroll cut off by removing Bootstrap h-100 from main row
Bootstrap's h-100 class applies height:100% !important, overriding the custom calc(100vh - 56px) on #main-row. This made the sidebar 900px tall starting at y=56 (below the navbar), extending 56px below the viewport and cutting off the bottom of the stop list. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c2355a053d
commit
2a82a9e8fa
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@
|
|||
</nav>
|
||||
|
||||
<div class="container-fluid h-100 p-0">
|
||||
<div class="row g-0 h-100" id="main-row">
|
||||
<div class="row g-0" id="main-row">
|
||||
|
||||
<!-- Sidebar -->
|
||||
<div class="col-3 border-end" id="sidebar">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue