Compare commits
No commits in common. "d5c6cad09658992a4c75ceea51a2efe58f5b7cd1" and "e9e844863d78a88c6be020922f1fa307a3aa0518" have entirely different histories.
d5c6cad096
...
e9e844863d
@ -1,12 +1,12 @@
|
||||
<!-- Sidebar -->
|
||||
<div class="sidebar p-3" id="sidebar">
|
||||
<!-- <h5>Sidebar</h5> -->
|
||||
<ul class="navbar-nav flex-column pb-5">
|
||||
<ul class="nav flex-column pb-5">
|
||||
% for item in menu:
|
||||
% if any(role in item['roles'] for role in user_roles):
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white ${'active' if item['name'] == active_page else ''}" href="${item['href']}" target="${item['target']}">
|
||||
<i class="${item['icon']} me-3"></i> ${item['name']}
|
||||
<i class="${item['icon']}"></i> ${item['name']}
|
||||
</a>
|
||||
</li>
|
||||
% endif
|
||||
|
@ -20,10 +20,6 @@ body {
|
||||
overflow-y: auto; /* Make sidebar scrollable */
|
||||
}
|
||||
|
||||
.sidebar .navbar-nav .nav-item .active {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.sidebar.minimized {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user