mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1735 from keepassxreboot/fix/options_page_hamburger_menu
Fix options page hamburger menu
This commit is contained in:
commit
fff0943e2f
2 changed files with 13 additions and 4 deletions
|
|
@ -56,6 +56,7 @@ input[disabled] {
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
display: none;
|
||||||
bottom: 1rem;
|
bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -200,10 +201,18 @@ table td:last-of-type {
|
||||||
.sidebar {
|
.sidebar {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1440px) {
|
@media (min-width: 1440px) {
|
||||||
.sidebar {
|
.sidebar {
|
||||||
width: 240px;
|
width: 240px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<nav class="col-md-3 col-lg-2 sidebar">
|
<nav class="col-md-3 col-lg-2 sidebar">
|
||||||
<button class="navbar-dark navbar-toggler collapsed d-block d-md-none pt-2" type="button" data-toggle="collapse" data-target="#sidebar" aria-controls="sidebar">
|
<button class="navbar-dark navbar-toggler collapsed d-block d-md-none pt-2" type="button" data-bs-toggle="collapse" data-bs-target="#sidebar" aria-controls="sidebar">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse d-none d-md-block" id="sidebar">
|
<div class="collapse d-none d-md-block" id="sidebar">
|
||||||
|
|
@ -66,10 +66,10 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<footer class="px-3 mt-4 mb-1 text-uppercase position-absolute small text-muted">
|
|
||||||
© 2017-2022 - KeePassXC Team
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
|
<footer class="px-3 mt-4 mb-1 text-uppercase position-absolute small text-muted">
|
||||||
|
© 2017-2022 - KeePassXC Team
|
||||||
|
</footer>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<main class="col-md-9 col-lg-10 offset-md-3 offset-lg-2 px-4 mt-5 mt-md-0">
|
<main class="col-md-9 col-lg-10 offset-md-3 offset-lg-2 px-4 mt-5 mt-md-0">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue