= (props) => {
return (
<>
- {children}
-
+ {children}
>
);
};
-const Container = styled(Box)(() => {
- return {
- width: '85%',
- };
-});
-
export { AppLayout };
diff --git a/src/containers/LockedAssets/index.tsx b/src/containers/LockedAssets/index.tsx
index 35c681e..8459a2f 100644
--- a/src/containers/LockedAssets/index.tsx
+++ b/src/containers/LockedAssets/index.tsx
@@ -10,7 +10,7 @@ export const LockedAssets = () => {
const { ecosystemData, totalL1TVL } = useData();
return (
-
+
{ecosystemData && (
<>
@@ -23,10 +23,14 @@ export const LockedAssets = () => {
>
)}
-
+
);
};
+export const StyledSection = styled('section')(() => ({
+ width: '100%',
+}));
+
const LockedAssetsContainer = styled(Box)(() => ({
display: 'flex',
justifyContent: 'space-between',
diff --git a/src/pages/layout.tsx b/src/pages/layout.tsx
index d88bf38..c3b9ce9 100644
--- a/src/pages/layout.tsx
+++ b/src/pages/layout.tsx
@@ -12,12 +12,6 @@ export default function Layout({ children }: { children: React.ReactNode }) {
This website requires JavaScript to function properly.
- {/* TODO: remove when responsive is done */}
-
-
- This website is not yet optimized for mobile devices. Please use a desktop browser for the best experience.
-
-
{children}
@@ -51,20 +45,3 @@ const NoScriptMessage = styled('noscript')(() => {
},
};
});
-
-const ResponsiveDisclaimer = styled('div')(() => {
- return {
- display: 'none',
- margin: '0 auto',
- textAlign: 'start',
- fontSize: '1.6rem',
- padding: '1rem 0.8rem 1rem',
- '@media (max-width: 600px)': {
- display: 'block',
- },
- p: {
- padding: '1rem 0',
- margin: 0,
- },
- };
-});