fix(frontend): fix overflow of releases cards on pages with overview

This commit is contained in:
Kentai Radiquum 2024-04-29 03:52:29 +05:00
parent 0ff9618b5d
commit 8e945429c2
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -78,7 +78,9 @@ export const App = (props) => {
/>
)}
</div>
<main className="responsive">{props.children}</main>
<main className="responsive padding" style={{ overflow: "hidden" }}>
{props.children}
</main>
</body>
);
};