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 11import React from "react" ;
22import styled from "styled-components" ;
33
4- import { isProductionDeployment } from "consts/index" ;
5-
64import DesktopHeader from "./DesktopHeader" ;
75import MobileHeader from "./MobileHeader" ;
8- import { TestnetBanner } from "./TestnetBanner" ;
96
107const Container = styled . div `
118 position: sticky;
@@ -20,13 +17,12 @@ const Container = styled.div`
2017
2118const HeaderContainer = styled . div `
2219 width: 100%;
23- padding: 4px 24px 8px ;
20+ padding: 8px 24px;
2421` ;
2522
2623const Header : React . FC = ( ) => {
2724 return (
2825 < Container >
29- { ! isProductionDeployment ( ) ? < TestnetBanner /> : null }
3026 < HeaderContainer >
3127 < DesktopHeader />
3228 < MobileHeader />
You can’t perform that action at this time.
0 commit comments