From 8e945429c2bf333de2441f12abefd5072f9316e0 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Mon, 29 Apr 2024 03:52:29 +0500 Subject: [PATCH] fix(frontend): fix overflow of releases cards on pages with overview --- frontend/app/App.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/app/App.jsx b/frontend/app/App.jsx index eb5ec4a..96b208b 100644 --- a/frontend/app/App.jsx +++ b/frontend/app/App.jsx @@ -78,7 +78,9 @@ export const App = (props) => { /> )} -
{props.children}
+
+ {props.children} +
); };