Skip to content

Commit

Permalink
remove background image
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianscatularo committed Nov 21, 2023
1 parent 49cc0e1 commit 0e5e28f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 3 additions & 4 deletions apps/connect/src/components/atoms/Background.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import styled from "@mui/material/styles/styled";

/*
const GradientRight = styled("div")(({ theme }) => ({
position: "absolute",
top: "72px",
Expand Down Expand Up @@ -62,8 +63,10 @@ const GradientLeftBottom = styled("div")(({ theme }) => ({
display: "none",
},
}));
*/

const Container = styled("div")(() => ({
color: "#0A0629",
display: "flex",
flexDirection: "column",
minHeight: "100vh",
Expand All @@ -79,10 +82,6 @@ export default function Background({
return (
<Container>
{children}
<GradientRight />
<GradientRightBottom />
<GradientLeft />
<GradientLeftBottom />
</Container>
);
}
2 changes: 0 additions & 2 deletions apps/connect/src/theme/portal.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import createTheme from "@mui/material/styles/createTheme";
import responsiveFontSizes from "@mui/material/styles/responsiveFontSizes";
import font from '../assets/fonts/SuisseBPIntlBold.woff2';
import bg from '../assets/imgs/bg.svg';

const suisse = {
fontFamily: "Suisse BP Intl",
Expand Down Expand Up @@ -78,7 +77,6 @@ const theme = responsiveFontSizes(createTheme({
"@font-face": [suisse],
body: {
overscrollBehaviorY: "none",
backgroundImage: `url(${bg})`,
backgroundPosition: "top center",
backgroundRepeat: "repeat-y",
backgroundSize: "120%",
Expand Down

0 comments on commit 0e5e28f

Please sign in to comment.