Skip to content

Commit

Permalink
fix settings not showing on small screens (#1914)
Browse files Browse the repository at this point in the history
  • Loading branch information
fahdarafat authored Dec 15, 2024
1 parent 9258098 commit 2a02159
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/dialog/content/SettingDialogContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -249,6 +250,10 @@ const tabValue = computed(() =>
.settings-sidebar {
width: 100%;
}
.settings-content {
height: 350px;
}
}
/* Show a separator line above the Keybinding tab */
Expand Down

0 comments on commit 2a02159

Please sign in to comment.