Skip to content

Instantly share code, notes, and snippets.

@georgeperry1
Created February 2, 2020 17:55
Show Gist options
  • Save georgeperry1/932ad208ad9c5acf35bdea5e8ad76505 to your computer and use it in GitHub Desktop.
Save georgeperry1/932ad208ad9c5acf35bdea5e8ad76505 to your computer and use it in GitHub Desktop.
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