Skip to content

Commit ff8543a

Browse files
committed
remove w-full for scrolling
1 parent 070d373 commit ff8543a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/desktop/src/routes/(window-chrome)/settings/experimental.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function Inner(props: { initialStore: GeneralSettingsStore | null }) {
4040
};
4141

4242
return (
43-
<div class="flex flex-col w-full h-full custom-scroll">
43+
<div class="flex flex-col h-full custom-scroll">
4444
<div class="p-4 space-y-4">
4545
<div class="flex flex-col pb-4 border-b border-gray-2">
4646
<h2 class="text-lg font-medium text-gray-12">

apps/desktop/src/routes/(window-chrome)/settings/general.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ function Inner(props: { initialStore: GeneralSettingsStore | null }) {
372372
};
373373

374374
return (
375-
<div class="flex flex-col w-full h-full custom-scroll">
375+
<div class="flex flex-col h-full custom-scroll">
376376
<div class="p-4 space-y-6">
377377
<AppearanceSection
378378
currentTheme={settings.theme ?? "system"}

apps/desktop/src/routes/(window-chrome)/settings/hotkeys.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function Inner(props: { initialStore: HotkeysStore | null }) {
9494
] satisfies Array<keyof typeof ACTION_TEXT>;
9595

9696
return (
97-
<div class="flex flex-col flex-1 p-4 w-full h-full custom-scroll">
97+
<div class="flex flex-col flex-1 p-4 h-full custom-scroll">
9898
<div class="flex flex-col pb-4 border-b border-gray-2">
9999
<h2 class="text-lg font-medium text-gray-12">Shortcuts</h2>
100100
<p class="text-sm text-gray-10 w-full max-w-[500px]">

apps/desktop/src/routes/(window-chrome)/settings/license.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function Page() {
2323
const queryClient = useQueryClient();
2424

2525
return (
26-
<div class="flex overflow-y-auto relative flex-col gap-3 items-center p-4 mx-auto w-full h-full custom-scroll">
26+
<div class="flex relative flex-col gap-3 items-center p-4 mx-auto h-full custom-scroll">
2727
<Switch fallback={<CommercialLicensePurchase />}>
2828
<Match when={license.data?.type === "pro" && license.data}>
2929
<div class="flex justify-center items-center w-full h-screen">

0 commit comments

Comments
 (0)