Fix: scroll for large tables

This commit is contained in:
Benedikt Schwering 2024-04-21 19:18:32 +02:00
parent d002ae2e05
commit 9fd017013e

View File

@ -1,8 +1,18 @@
// horizontal scrolling for large table contents
.card.border {
overflow-x: auto;
}
// hide caret on mobile dropdown
.d-block.d-sm-none .dropdown-toggle::after {
display: none;
}
// dropdown menu can flow outside the tables bounding box
.dropdown-menu.show {
position: fixed !important;
}
tbody tr:last-child td {
border-bottom: none !important;
}