-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
50 lines (41 loc) · 782 Bytes
/
index.css
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
48
49
50
.wrapper {
display: flex;
flex-wrap: nowrap;
gap: 40px;
}
.wrapper__proto-container {
display: grid;
grid-template-columns: fit-content(200px) fit-content(250px);
grid-column-gap: 20px;
}
#recommendations {
border: 2px solid black;
}
.product-container {
display: flex;
margin-left: 25px;
}
.product-label {
text-align: center;
min-width: 80px;
}
.recommendation-vector {
display: flex;
}
.recommendation-label {
display: flex;
align-items: center;
justify-content: center;
border: 1px solid black;
min-width: 20px;
}
.recommendation-item {
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
border: 1px solid black;
min-width: 40px;
}
.wrapper__label {
}