From 95c2c20ca19f8fd3982fa6f58819b8d26ef8851f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Erik=20St=C3=B8wer?= Date: Tue, 26 Sep 2023 14:10:29 +0200 Subject: [PATCH] Fix overflow --- client-next/src/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-next/src/style.css b/client-next/src/style.css index c1e5f365844..10b4f0e2734 100644 --- a/client-next/src/style.css +++ b/client-next/src/style.css @@ -13,5 +13,5 @@ .itinerary-list-container { width: 36rem; height: calc(100vh - 200px); - overflow: scroll; + overflow-y: auto; }