Created
August 4, 2020 10:48
-
-
Save DZuz14/499d6364bf9766617071717b673fc613 to your computer and use it in GitHub Desktop.
React Spotify P1 Topbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import React from 'react' | |
import { css, jsx } from '@emotion/core' | |
const Topbar = ({ children }) => ( | |
<div | |
className="Topbar" | |
css={css` | |
position: absolute; | |
top: 0; | |
height: 50px; | |
background: #070707; | |
left: 200px; | |
width: calc(100% - 200px); | |
padding: 20px; | |
`} | |
> | |
{children} | |
</div> | |
) | |
export default Topbar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment