AMelonInsideLemon 3a5a43d08e
All checks were successful
Build / build (18) (pull_request) Successful in 38s
Build / build (22) (pull_request) Successful in 50s
Build / build (20) (pull_request) Successful in 1m10s
feat(webui): translations support
Closes #900
2025-02-05 07:18:39 +01:00

32 lines
595 B
CSS

@media (min-width: 992px) {
body.logged-in #main-view {
display: flex;
}
body.logged-in #sidebar {
position: sticky;
top: 5rem;
margin-right: 3rem;
}
body:not(.logged-in) #sidebar {
display: none;
}
}
body:not(.logged-in) .user-dropdown {
display: none;
}
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;
}