mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 19:49:27 +00:00
Fix sidebar
This commit is contained in:
parent
89a2b2229f
commit
6313b42e39
2 changed files with 10 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<app-navbar></app-navbar>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="sidebar border border-right col-md-3 col-lg-3 p-0 bg-body-tertiary" style="position: fixed; height: 100%;">
|
||||
<div class="sidebar border border-right col-md-3 col-lg-3 p-0 bg-body-tertiary">
|
||||
<app-sidebar [isDaemonRunning]="daemonRunning"></app-sidebar>
|
||||
</div>
|
||||
<main class="col-md-9 ms-sm-auto col-lg-9 px-md-4">
|
||||
|
|
|
@ -18,7 +18,16 @@ $primary: #ff5733;
|
|||
* Sidebar
|
||||
*/
|
||||
|
||||
.sidebar {
|
||||
position: inherit !important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.sidebar {
|
||||
position: fixed !important;
|
||||
}
|
||||
.sidebar .offcanvas-lg {
|
||||
position: sticky;
|
||||
top: 48px;
|
||||
|
|
Loading…
Reference in a new issue