diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx
index 60448e5a..433ee751 100644
--- a/src/components/Footer/Footer.tsx
+++ b/src/components/Footer/Footer.tsx
@@ -8,48 +8,50 @@ export const Footer = () => {
const { classes } = useStyles()
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
)
}
diff --git a/src/components/Footer/style.ts b/src/components/Footer/style.ts
index 7d37c808..fe182af2 100644
--- a/src/components/Footer/style.ts
+++ b/src/components/Footer/style.ts
@@ -44,6 +44,14 @@ const useStyles = makeStyles()(() => {
icon: {
height: 40,
width: 40
+ },
+ footerWrapper: {
+ display: 'flex',
+ alignItems: 'center',
+ height: 56,
+ paddingInline: 16,
+ borderRadius: 24,
+ background: colors.invariant.component
}
}
})
diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx
index 02b8defb..29e17307 100644
--- a/src/components/Header/Header.tsx
+++ b/src/components/Header/Header.tsx
@@ -142,7 +142,7 @@ export const Header: React.FC = ({
}, [network])
return (
-
+
{
height: 32,
boxShadow: 'none',
'&:hover': {
- background: colors.invariant.light,
+ background: colors.blue.deep,
'@media (hover: none)': {
background: 'transparent'
}
diff --git a/src/components/Header/style.ts b/src/components/Header/style.ts
index 5dfee660..4966e5a3 100644
--- a/src/components/Header/style.ts
+++ b/src/components/Header/style.ts
@@ -11,6 +11,7 @@ const useStyles = makeStyles()((theme: Theme) => {
height: 70,
display: 'flex',
justifyContent: 'space-between',
+ background: colors.invariant.component,
[theme.breakpoints.down('xl')]: {
paddingInline: 32
@@ -89,7 +90,7 @@ const useStyles = makeStyles()((theme: Theme) => {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
- backgroundColor: colors.invariant.component,
+ backgroundColor: colors.invariant.light,
borderRadius: 14,
width: 'auto',
padding: 4
@@ -135,6 +136,9 @@ const useStyles = makeStyles()((theme: Theme) => {
[theme.breakpoints.up(1600)]: {
flex: '1 1 0%'
}
+ },
+ background: {
+ background: colors.invariant.component
}
}
})