From 78a0019564c86d16addd93748d3e439bed85dd3c Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Wed, 13 Nov 2024 15:04:18 +0100 Subject: [PATCH] fixed overflowing shopping cart on weird zoom factors --- public/plugins/vue/tt-components/css/tt-table.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/plugins/vue/tt-components/css/tt-table.css b/public/plugins/vue/tt-components/css/tt-table.css index e3b6227c2..02fa54d34 100644 --- a/public/plugins/vue/tt-components/css/tt-table.css +++ b/public/plugins/vue/tt-components/css/tt-table.css @@ -273,6 +273,8 @@ td { width: 500px; /* Expanded width */ max-width: 85vw; height: 600px; /* Expanded height */ + max-height: 75vh; + overflow: auto; z-index: 1000; }