-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredo.css
More file actions
74 lines (62 loc) · 1.11 KB
/
redo.css
File metadata and controls
74 lines (62 loc) · 1.11 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.mainContainer {
width: 100%;
height: auto;
padding: 6rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgb(255, 255, 255);
}
.ComponentContainer {
width: 100%;
height: auto;
border-radius: 1rem;
display: flex;
border: 1px solid gainsboro;
flex-direction: row;
justify-content: start;
align-items: start;
}
.contentContainer {
width: 25%;
height: auto;
padding: 1.5rem;
row-gap: 2.5rem;
display: flex;
flex-direction: column;
border-right: 2px solid gainsboro;
justify-content: start;
align-items: start;
}
.topContent {
width: 100%;
height: auto;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.revenue, .percent {
width: fit-content;
height: auto;
}
.revenue p {
font-size: 1rem;
font-weight: 500;
}
.amount {
width: fit-content;
height: auto;
}
.red {
color: red;
}
.last {
border-right: none;
}