-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBlockCard.scss
76 lines (66 loc) · 1.3 KB
/
BlockCard.scss
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
75
76
.BlockCard {
font-family: "Fira Code Regular", sans-serif;
background: var(--app-card-default-background);
display: flex;
flex-direction: column;
flex-grow: 1;
margin: 0;
border-radius: 4px;
word-wrap: break-word;
width: 100%;
header {
width: 100%;
height: 64px;
display: flex;
flex-direction: row;
justify-content: flex-start;
background-color: #fff;
border-bottom: 1px solid #aaa;
line-height: 1;
h1 {
font-size: 1.5rem;
padding: 1.25rem;
margin: 0;
}
}
.Button {
text-decoration: none;
text-align: center;
margin: 0;
}
header button {
border-radius: 0;
line-height: 1;
height: 100%;
}
.BlockBody {
padding: 1rem 0;
border-bottom: 1px solid #aaa;
> div {
padding: 1rem;
}
}
.HeaderSecondaryInfo {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 1rem;
}
.Label {
font-size: .75rem;
font-family: "RobotoCondensed-Regular";
font-weight: 800;
color: var(--app-card-label);
margin-bottom: .25rem;
}
.Value {
font-size: 1.125rem;
font-family: "Fira Code Regular";
color: var(--app-card-value);
word-break: break-all;
}
.HasTxs {
border-color: var(--primary-color);
}
}