-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathmodal.module.css
More file actions
80 lines (69 loc) · 1.02 KB
/
modal.module.css
File metadata and controls
80 lines (69 loc) · 1.02 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
75
76
77
78
79
80
.background {
left: 0;
min-height: 100%;
min-width: 100%;
overflow: hidden;
position: fixed;
top: 0;
}
.closeIconWrapper {
cursor: pointer;
position: absolute;
right: 15px;
top: 15px;
}
.italic {
font-style: italic;
}
.modalContainer {
background-color: #fff;
border: 2px solid black;
font-size: 18px;
left: 10%;
max-width: 80%;
max-height: 80%;
min-width: 80%;
overflow: auto;
padding: 20px;
position: fixed;
top: 10%;
z-index: 100;
}
.modalContainer strong {
font-weight: 500;
}
.snapshotLink {
font-size: 1.8rem;
padding-left: 10px;
}
.snapshotWrapper {
padding-bottom: 5px;
}
.title {
font-size: 20px;
font-weight: 500;
padding-bottom: 15px;
}
.error {
color: red;
font-size: 2.5rem;
padding-bottom: 15px;
}
.changelogSectionTitle {
font-weight: 500;
margin-top: 20px;
margin-bottom: 10px;
}
.list {
display: flex;
align-items: center;
gap: 5px;
margin-left: 20px;
margin-bottom: 3px;
}
.list a {
font-weight: 300;
}
.newLine {
margin-top: 5px;
}