style: improve mobile compatibility of certain manage pages (#678)

* style: improve mobile compatibility of certain manage pages

* style: improve mobile support for more manage pages

* fix: format issues

* chore: address pull request feedback
This commit is contained in:
Meier Lukas
2024-06-22 21:02:17 +02:00
committed by GitHub
parent f92aeba403
commit 6029a5b592
19 changed files with 167 additions and 95 deletions

View File

@@ -0,0 +1,11 @@
import type { PropsWithChildren } from "react";
import type { MantineSize } from "@mantine/core";
import { Container } from "@mantine/core";
export const ManageContainer = ({ children, size }: PropsWithChildren<{ size?: MantineSize }>) => {
return (
<Container size={size} px={{ base: "0 !important", md: "var(--mantine-spacing-md) !important" }}>
{children}
</Container>
);
};