Created
February 2, 2020 17:55
-
-
Save georgeperry1/932ad208ad9c5acf35bdea5e8ad76505 to your computer and use it in GitHub Desktop.
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
import styled from 'styled-components'; | |
export const WaveformContianer = styled.div` | |
display: flex; | |
flex-direction: row; | |
align-items: center; | |
height: 80px; | |
width: 100%; | |
background: #fff; | |
padding: 0px 0px 5px 10px; | |
`; | |
export const Wave = styled.div` | |
width: 80%; | |
height: 70px; | |
margin-left: 10px; | |
`; | |
export const PlayButton = styled.button` | |
width: 60px; | |
height: 60px; | |
background: #EFEFEF; | |
border-radius: 50%; | |
border: none; | |
outline: none; | |
cursor: pointer; | |
margin-top: 10px; | |
padding-top: 3px; | |
&:hover { | |
background: #DDD; | |
} | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment