File tree Expand file tree Collapse file tree 2 files changed +1
-46
lines changed Expand file tree Collapse file tree 2 files changed +1
-46
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import styled from "styled-components" ;
3
3
4
- import { isProductionDeployment } from "consts/index" ;
5
-
6
4
import DesktopHeader from "./DesktopHeader" ;
7
5
import MobileHeader from "./MobileHeader" ;
8
- import { TestnetBanner } from "./TestnetBanner" ;
9
6
10
7
const Container = styled . div `
11
8
position: sticky;
@@ -20,13 +17,12 @@ const Container = styled.div`
20
17
21
18
const HeaderContainer = styled . div `
22
19
width: 100%;
23
- padding: 4px 24px 8px ;
20
+ padding: 8px 24px;
24
21
` ;
25
22
26
23
const Header : React . FC = ( ) => {
27
24
return (
28
25
< Container >
29
- { ! isProductionDeployment ( ) ? < TestnetBanner /> : null }
30
26
< HeaderContainer >
31
27
< DesktopHeader />
32
28
< MobileHeader />
You can’t perform that action at this time.
0 commit comments