Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ body {
}

.sidebar {
min-height: calc(100vh - 56px);
background-color: #343a40;
padding-top: 20px;
}

/* The "min-width" comes from the "min-width" media attribute on "main-content" */
@media (min-width: 768px) {
.sidebar {
min-height: calc(100vh - 56px);
}
}

/* Removed color and background styles as they are set inline in Sidebar.js */
/* Kept basic layout and transition styles */
.sidebar .nav-link {
Expand Down