Update dropdown positioning in FormattedDropdown component for improved visibility

- Changed the dropdown list positioning from normal document flow to absolute positioning, ensuring the list is reliably visible when opened.
This commit is contained in:
Torsten Schulz (local)
2025-11-24 15:39:44 +01:00
parent 6e7165fe7f
commit 29b6db7ee9

View File

@@ -99,9 +99,9 @@ export default {
}
.dropdown-list {
/* Statt absolut positioniert (wurde durch übergeordnete Container mit
overflow:hidden abgeschnitten) jetzt im normalen Dokumentfluss, damit
die Liste zuverlässig sichtbar ist, sobald isOpen=true. */
position: absolute;
top: 100%;
left: 0;
background: white;
border: 1px solid #ccc;
border-radius: 4px;