diff --git a/scan/src/components/Header.re b/scan/src/components/Header.re
index d1dd20eb83..ce3f51d39b 100644
--- a/scan/src/components/Header.re
+++ b/scan/src/components/Header.re
@@ -6,7 +6,6 @@ module Styles = {
paddingTop(Spacing.lg),
backgroundColor(Colors.white),
borderBottom(`px(2), `solid, Colors.blueGray1),
- marginBottom(`px(24)),
zIndex(3),
Media.mobile([
padding(Spacing.md),
@@ -23,14 +22,7 @@ module Styles = {
let telegramLogo = style([width(`px(15))]);
let cmcLogo = style([width(`px(17))]);
- let socialLink =
- style([
- display(`flex),
- flexDirection(`row),
- justifyContent(`center),
- alignItems(`center),
- marginLeft(`px(10)),
- ]);
+ let socialLink = style([marginLeft(`px(10))]);
let link = style([cursor(`pointer)]);
};
@@ -78,24 +70,27 @@ module DesktopRender = {