From 064a919bd6c874054f256c763f6a584f498c3cf8 Mon Sep 17 00:00:00 2001 From: Corwin Date: Wed, 5 Jul 2023 21:47:52 +0100 Subject: [PATCH] handle overflow of dialog --- website/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/src/App.tsx b/website/src/App.tsx index a8debdfa..a106a31a 100644 --- a/website/src/App.tsx +++ b/website/src/App.tsx @@ -10,6 +10,8 @@ import { Slider } from "./Slider"; const BindingsDialog = styled.dialog` border-radius: 5px; margin-top: 20px; + overflow-y: scroll; + max-height: calc(100vh - 100px); `; const VolumeLabel = styled.label`