blob: d5ee93af7c1dc523494a97c5b3856e87fe34c6a1 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
|
import styled from 'styled-components';
const CartStyles = styled.div`
padding: 20px;
position: relative;
background: white;
position: fixed;
height: 100%;
top: 0;
right: 0;
width: 40%;
min-width: 500px;
bottom: 0;
transform: translateX(100%);
transition: all 0.3s;
box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2);
z-index: 5;
display: grid;
grid-template-rows: auto 1fr auto;
${props => props.open && `transform: translateX(0);`};
header {
border-bottom: 5px solid ${props => props.theme.black};
margin-bottom: 2rem;
padding-bottom: 2rem;
}
footer {
border-top: 10px double ${props => props.theme.black};
margin-top: 2rem;
padding-top: 2rem;
display: grid;
grid-template-columns: auto auto;
align-items: center;
font-size: 3rem;
font-weight: 900;
p {
margin: 0;
}
}
ul {
margin: 0;
padding: 0;
list-style: none;
overflow: scroll;
}
`;
export default CartStyles;
|