From 1d2db6eb231343c7b2d7666ba36ff0b8e9e86c0d Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 6 Jan 2026 10:35:26 +0200 Subject: [PATCH] Fix InfoPopover size --- app/components/InfoPopover.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/InfoPopover.module.css b/app/components/InfoPopover.module.css index 68937dc9d..91e1090a6 100644 --- a/app/components/InfoPopover.module.css +++ b/app/components/InfoPopover.module.css @@ -5,8 +5,8 @@ color: var(--color-text); font-size: var(--fonts-md); padding: var(--s-0-5); - width: var(--input-height); - height: var(--input-height); + width: calc(var(--input-height) * 0.7); + height: calc(var(--input-height) * 0.7); display: flex; align-items: center; justify-content: center;