File size: 742 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import styled from 'styled-components';
export const Container = styled.div`
padding: 0 15px;
height: 100%;
flex: 0 0 320px;
opacity: ${props => props.done ? 0.6 : 1}
& + div {
border-left: 1px solid rgba(0, 0, 0, 0.05);
}
header {
display: flex;
justify-content: space-between;
align-items: center;
height: 42px;
h2 {
font-weight: 500;
font-size: 16px;
padding: 0 10px;
}
button {
height: 42px;
width: 42px;
border-radius: 18px;
background: #3b5bfd;
border: 0;
cursor: pointer;
}
}
ul {
margin-top: 30px;
}
`;
|