-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathstyles.module.scss
122 lines (100 loc) · 1.47 KB
/
styles.module.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
.textField {
width: 400px;
max-width: 100%;
input,
label {
font-family: 'Fira Code', monospace;
color: #000;
}
label {
font-size: 10px;
}
:disabled {
cursor: not-allowed;
color: rgba(0, 0, 0, 0.38);
}
@media (max-width: 600px) {
width: 100%;
}
}
.chipContainer {
width: 350px;
max-width: 100%;
margin-bottom: 0;
}
.databasesContainer {
width: 350px;
max-width: 100%;
}
.chip {
margin-right: 8px;
margin-top: 8px;
}
.underline {
text-decoration: underline;
cursor: pointer;
}
.root {
font-size: 12px;
max-width: 450px;
}
.spinner {
margin-left: 8px;
}
.spinnerContainer {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.infoIcon {
margin-left: 6px;
height: 12px;
width: 12px;
}
.externalIcon {
margin-left: 2px;
height: 12px;
width: 12px;
}
.externalLink {
display: inline-flex;
align-items: center;
width: max-content;
&:link,
&:hover {
color: #0000ee;
}
&:visited {
color: #551a8b;
}
}
.largeIcon {
height: 15px;
width: 15px;
}
.subsection {
margin-bottom: 0.25rem;
font-size: 13px;
font-weight: 500;
}
.modalTitle {
font-size: 16px;
font-weight: bold !important;
}
.sectionTitle {
display: flex;
align-items: center;
gap: 3px;
}
.firaCodeFont {
font-family: 'Fira Code', monospace !important;
}
.snackbar {
div {
background-color: #ff6212;
color: #fff;
border-radius: 4px;
cursor: pointer;
}
}