From 15e901d2babc327ef75cbbacdaac64f5a1597f7d Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Mon, 24 Jan 2022 16:13:22 -0300 Subject: [PATCH] Header done --- public/index.html | 3 +++ src/components/Header/Header.jsx | 23 +++++++++++++++++++++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index b7e6469..03127c2 100644 --- a/public/index.html +++ b/public/index.html @@ -24,6 +24,9 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> + + + { + const Header = styled.header` + + display: flex; + justify-content: center; + + padding: 3vh 0px; + + border-bottom: solid 2px #ffffff24; + + user-select: none; + + h1 { + + font-family: 'Raleway', sans-serif; + color: #fff; + } + ` + return ( -
+

Crypto Page

-
+
) };