mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 09:14:08 +00:00
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:
@@ -43,7 +43,7 @@
|
||||
</BaseList>
|
||||
</div>
|
||||
|
||||
<div class="w-full overflow-hidden">
|
||||
<div class="w-full overflow-visible">
|
||||
<RouterView />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user