blob: 4a2d8049391c62c6daa58802f02ed584bf644c51 (
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
|
import styled from 'styled-components';
const OrderStyles = styled.div`
max-width: 1000px;
margin: 0 auto;
border: 1px solid ${props => props.theme.offWhite};
box-shadow: ${props => props.theme.bs};
padding: 2rem;
border-top: 10px solid red;
& > p {
display: grid;
grid-template-columns: 1fr 5fr;
margin: 0;
border-bottom: 1px solid ${props => props.theme.offWhite};
span {
padding: 1rem;
&:first-child {
font-weight: 900;
text-align: right;
}
}
}
.order-item {
border-bottom: 1px solid ${props => props.theme.offWhite};
display: grid;
grid-template-columns: 300px 1fr;
align-items: center;
grid-gap: 2rem;
margin: 2rem 0;
padding-bottom: 2rem;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
`;
export default OrderStyles;
|