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