32 lines
595 B
CSS
Raw Normal View History

@media (min-width: 992px) {
body.logged-in #main-view {
2024-06-01 12:57:27 +02:00
display: flex;
}
body.logged-in #sidebar {
position: sticky;
top: 5rem;
2024-06-01 12:57:27 +02:00
margin-right: 3rem;
}
body:not(.logged-in) #sidebar {
display: none;
}
}
body:not(.logged-in) .user-dropdown {
display: none;
}
2024-06-16 21:49:41 +02:00
td.text-end > a > svg {
fill: currentColor;
height: 1em;
margin-left: 0.5em;
margin-bottom: 4px; /* to centre the icon */
}
/* if an item name is super long, ensure it doesn't prevent the user from using actions */
.card-body {
overflow: auto;
}