Allow settings panel dropdowns to overflow their container

Switch the settings layout content wrapper from overflow-hidden to overflow-visible in SettingsLayoutView, UserSettingsLayoutView and AdminSettingsView so multiselect dropdowns and tooltips can render outside the panel without being clipped.
This commit is contained in:
Darko Gjorgjijoski
2026-04-07 07:55:00 +02:00
parent 78ed332d06
commit 5ab9c5f736
3 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@
</BaseList>
</div>
<div class="w-full overflow-hidden">
<div class="w-full overflow-visible">
<RouterView />
</div>
</div>

View File

@@ -131,7 +131,7 @@ function navigateToSetting(setting: DropdownMenuItem): void {
</router-link>
</div>
<div class="w-full overflow-hidden">
<div class="w-full overflow-visible">
<RouterView />
</div>
</div>

View File

@@ -99,7 +99,7 @@ function navigateToSetting(setting: MenuItem): void {
</BaseList>
</div>
<div class="w-full overflow-hidden">
<div class="w-full overflow-visible">
<RouterView />
</div>
</div>