fix settings not showing on small screens (#1914)

This commit is contained in:
Fahd Arafat
2024-12-16 01:40:40 +02:00
committed by GitHub
parent 9258098e0c
commit 2a02159355

View File

@@ -16,7 +16,8 @@
class="border-none w-full"
/>
</ScrollPanel>
<Divider layout="vertical" class="mx-1 2xl:mx-4" />
<Divider layout="vertical" class="mx-1 2xl:mx-4 hidden md:flex" />
<Divider layout="horizontal" class="flex md:hidden" />
<Tabs :value="tabValue" :lazy="true" class="settings-content h-full w-full">
<TabPanels class="settings-tab-panels h-full w-full pr-0">
<PanelTemplate value="Search Results">
@@ -249,6 +250,10 @@ const tabValue = computed(() =>
.settings-sidebar {
width: 100%;
}
.settings-content {
height: 350px;
}
}
/* Show a separator line above the Keybinding tab */