Skip to content

Instantly share code, notes, and snippets.

@mlshv
Created April 2, 2018 20:05
Show Gist options
  • Select an option

  • Save mlshv/f088eb54e3410e85c7418d3104f7e527 to your computer and use it in GitHub Desktop.

Select an option

Save mlshv/f088eb54e3410e85c7418d3104f7e527 to your computer and use it in GitHub Desktop.
ITCFnd. Кнопка Delivery
import styled from 'styled-components';
const Button = styled.button`
padding: 12px 32px;
line-height: 1;
border: none;
border-radius: 34.5px;
opacity: .9;
color: #fff;
background-color: #a3d200;
cursor: pointer;
&:hover {
border-color: #b7e611;
opacity: 1;
}
`;
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment