diff --git a/ui/summit-2023/src/App.scss b/ui/summit-2023/src/App.scss index aab34d7c5..dfa6fe33f 100644 --- a/ui/summit-2023/src/App.scss +++ b/ui/summit-2023/src/App.scss @@ -14,8 +14,8 @@ html, .MainContent { flex: 1; display: flex; - align-items: center; // Centra el contenido verticalmente - justify-content: center; // Centra el contenido horizontalmente + align-items: center; + justify-content: center; } .background-shape-1 { position: absolute; diff --git a/ui/summit-2023/src/App.tsx b/ui/summit-2023/src/App.tsx index 260a4c793..dc0b96b52 100644 --- a/ui/summit-2023/src/App.tsx +++ b/ui/summit-2023/src/App.tsx @@ -20,7 +20,7 @@ function App() {
- + { display: 'flex', flexDirection: { xs: 'column', sm: 'row' }, height: { xs: 'auto', sm: '400px' }, + marginLeft: isMobile ? '0px' : '50px' }} > -
+
{ sx={{ flex: '1', padding: '20px', + marginLeft: isMobile ? '0px' : '40px', order: { xs: '2', sm: '2' }, }} > -
+
<>
diff --git a/ui/summit-2023/src/components/common/Footer/Footer.tsx b/ui/summit-2023/src/components/common/Footer/Footer.tsx index a4306e4ce..57ea70552 100644 --- a/ui/summit-2023/src/components/common/Footer/Footer.tsx +++ b/ui/summit-2023/src/components/common/Footer/Footer.tsx @@ -14,7 +14,7 @@ const Footer: React.FC = () => { © {new Date().getFullYear()} Cardano Summit. @@ -24,7 +24,7 @@ const Footer: React.FC = () => { { return ( <> -
+
); };