Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created August 4, 2020 10:48
Show Gist options
  • Save DZuz14/499d6364bf9766617071717b673fc613 to your computer and use it in GitHub Desktop.
Save DZuz14/499d6364bf9766617071717b673fc613 to your computer and use it in GitHub Desktop.
React Spotify P1 Topbar
/** @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