1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import styled from 'styled-components'; const SickButton = styled.button` background: red; color: white; font-weight: 500; border: 0; border-radius: 0; text-transform: uppercase; font-size: 2rem; padding: 0.8rem 1.5rem; transform: skew(-2deg); display: inline-block; transition: all 0.5s; &[disabled] { opacity: 0.5; } `; export default SickButton;