diff options
| author | Beebles <102569435+beebls@users.noreply.github.com> | 2025-09-26 16:14:13 -0600 |
|---|---|---|
| committer | Beebles <102569435+beebls@users.noreply.github.com> | 2025-09-26 16:14:13 -0600 |
| commit | ef2704614371cd0e9cf7b0f0871730e02e35a6a9 (patch) | |
| tree | 45897b9f4fa20c2aa1c15ef369d4ec7cc0b9958c | |
| parent | 8bb4ff71181bfe257b2f67cbedc077ec097e93b2 (diff) | |
| download | decky-loader-ef2704614371cd0e9cf7b0f0871730e02e35a6a9.tar.gz decky-loader-ef2704614371cd0e9cf7b0f0871730e02e35a6a9.zip | |
test setting scrollpanelgroup to false
| -rw-r--r-- | frontend/src/components/AnnouncementsDisplay.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/src/components/AnnouncementsDisplay.tsx b/frontend/src/components/AnnouncementsDisplay.tsx index d1a0ec8c..3d4d81c0 100644 --- a/frontend/src/components/AnnouncementsDisplay.tsx +++ b/frontend/src/components/AnnouncementsDisplay.tsx @@ -200,11 +200,11 @@ function AnnouncementModal({ } `} </style> - <Focusable style={{ display: 'flex', flexDirection: 'column', gap: '0.5rem', height: '80vh' }}> - <h1>{announcement.title}</h1> + <Focusable style={{ display: 'flex', flexDirection: 'column', gap: '0.5rem', height: 'calc(100vh - 200px)' }}> + <span style={{ fontWeight: 'bold', fontSize: '1.25rem' }}>{announcement.title}</span> <ScrollPanelGroup // @ts-ignore - focusable={true} + focusable={false} style={{ flex: 1, height: '100%' }} // onCancelButton doesn't work here onCancelActionDescription="Back" |
