Fixes #15536: Fix clipping of dropdown menus inside responsive tables

This commit is contained in:
Jeremy Stretch 2024-03-28 16:10:08 -04:00
parent eaa3bc6576
commit d707c65637
2 changed files with 8 additions and 1 deletions

Binary file not shown.

View File

@ -2,3 +2,10 @@
html {
scroll-behavior: auto !important;
}
// Prevent dropdown menus from being clipped inside responsive tables
.table-responsive {
.dropdown, .btn-group, .btn-group-vertical {
position: static;
}
}