From 46eba8b5d1c53cec6fb950822e4dffd8697e7c3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Morav=C4=8D=C3=ADk?= Date: Fri, 7 Nov 2025 15:23:24 +0100 Subject: [PATCH] fix: correctly stretch Actor template cards --- src/components/ActorTemplates/ActorTemplates.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/ActorTemplates/ActorTemplates.tsx b/src/components/ActorTemplates/ActorTemplates.tsx index 107af3856f..d2368bc3f8 100644 --- a/src/components/ActorTemplates/ActorTemplates.tsx +++ b/src/components/ActorTemplates/ActorTemplates.tsx @@ -36,6 +36,10 @@ const ActorTemplatesWrapper = styled.div` margin: 0 auto; gap: ${theme.space.space24}; + > a { + display: flex; + } + @media (min-width: ${theme.layout.tablet}) { grid-template-columns: repeat(2, 1fr); }