-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
42 lines (39 loc) · 828 Bytes
/
style.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
@tailwind base;
@tailwind components;
@tailwind utilities;
#opcodes {
max-height: 400px;
}
#contract-calls{
max-height: 2650px;
}
.opcode {
margin: 10px 5px;
min-width: 200px;
}
.contract-call {
margin: 10px 5px;
min-width: 200px;
}
.operation-name {
/* display: flex; */
/* align-items: center; */
}
a {
text-decoration: underline;
color: blue;
cursor: pointer;
}
@media only screen and (max-width: 1000px) {
body {
padding: 2%;
}
#opcodes {
flex-direction: row !important;
max-height: 1000000000px !important; /* nonsensically large number to prevent overlapping */
}
#contract-calls{
flex-direction: row !important;
max-height: 1000000000px !important; /* nonsensically large number to prevent overlapping */
}
}