Skip to content

Commit 03ac1a2

Browse files
author
Scott Davidson
committed
Fix buggy CSS
Previous CSS made custom model setup modal unusable on regular-sized screens and only worked on large monitors.
1 parent e45b521 commit 03ac1a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/src/components/initialSetup/welcome/WelcomeModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ export function _WelcomeModal({ user }: { user: User | null }) {
6565
enabling intelligent responses to your queries.
6666
</Text>
6767

68-
<div className="max-h-[900px] overflow-y-scroll">
68+
{/* NOTE(sd109): The upstream CSS here breaks custom model modal on regular sized laptop screens */}
69+
<div className="max-h-[50vh] overflow-y-auto">
6970
<ApiKeyForm
7071
hidePopup
7172
onSuccess={() => {

0 commit comments

Comments
 (0)