mirror of
https://github.com/FranP-code/Crypto-Prices.git
synced 2025-10-12 23:53:06 +00:00
Header done
This commit is contained in:
@@ -1,12 +1,31 @@
|
||||
import React from 'react';
|
||||
import styled from 'styled-components'
|
||||
|
||||
const Header = () => {
|
||||
|
||||
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 (
|
||||
|
||||
<header>
|
||||
<Header>
|
||||
<h1>Crypto Page</h1>
|
||||
</header>
|
||||
</Header>
|
||||
)
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user