infinity-forge 7.2.6 → 7.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,351 @@
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ button,
8
+ a {
9
+ outline: unset !important;
10
+ cursor: pointer;
11
+ }
12
+
13
+ html {
14
+ font-family: sans-serif;
15
+ line-height: 1.15;
16
+ -webkit-text-size-adjust: 100%;
17
+ -ms-text-size-adjust: 100%;
18
+ -ms-overflow-style: scrollbar;
19
+ -webkit-tap-highlight-color: transparent;
20
+ }
21
+
22
+ .row {
23
+ display: flex;
24
+ gap: 15px;
25
+ }
26
+
27
+ @-ms-viewport {
28
+ width: device-width;
29
+ }
30
+
31
+ article,
32
+ aside,
33
+ dialog,
34
+ figcaption,
35
+ figure,
36
+ footer,
37
+ header,
38
+ hgroup,
39
+ main,
40
+ nav,
41
+ section {
42
+ display: block;
43
+ }
44
+
45
+ body {
46
+ margin: 0;
47
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif,
48
+ 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
49
+ font-size: 1rem;
50
+ font-weight: normal;
51
+ line-height: 1.5;
52
+ color: #212529;
53
+ text-align: left;
54
+ background-color: #fff;
55
+ }
56
+
57
+ [tabindex='-1']:focus {
58
+ outline: none !important;
59
+ }
60
+
61
+ hr {
62
+ box-sizing: content-box;
63
+ height: 0;
64
+ overflow: visible;
65
+ }
66
+
67
+ h1,
68
+ h2,
69
+ h3,
70
+ h4,
71
+ h5,
72
+ h6 {
73
+ margin-top: 0;
74
+ margin-bottom: 0.5rem;
75
+ }
76
+
77
+ p {
78
+ margin-top: 0;
79
+ margin-bottom: 1rem;
80
+ }
81
+
82
+ abbr[title],
83
+ abbr[data-original-title] {
84
+ text-decoration: underline;
85
+ -webkit-text-decoration: underline dotted;
86
+ text-decoration: underline dotted;
87
+ cursor: help;
88
+ border-bottom: 0;
89
+ }
90
+ address {
91
+ margin-bottom: 1rem;
92
+ font-style: normal;
93
+ line-height: inherit;
94
+ }
95
+ ol,
96
+ ul,
97
+ dl {
98
+ margin-top: 0;
99
+ margin-bottom: 1rem;
100
+ }
101
+ ol ol,
102
+ ul ul,
103
+ ol ul,
104
+ ul ol {
105
+ margin-bottom: 0;
106
+ }
107
+ dt {
108
+ font-weight: bold;
109
+ }
110
+ dd {
111
+ margin-bottom: 0.5rem;
112
+ margin-left: 0;
113
+ }
114
+ blockquote {
115
+ margin: 0 0 1rem;
116
+ }
117
+ dfn {
118
+ font-style: italic;
119
+ }
120
+ b,
121
+ strong {
122
+ font-weight: bolder;
123
+ }
124
+ small {
125
+ font-size: 80%;
126
+ }
127
+ sub,
128
+ sup {
129
+ position: relative;
130
+ font-size: 75%;
131
+ line-height: 0;
132
+ vertical-align: baseline;
133
+ }
134
+ sub {
135
+ bottom: -0.25em;
136
+ }
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+
141
+ a {
142
+ color: #007bff;
143
+ text-decoration: none;
144
+ background-color: transparent;
145
+ -webkit-text-decoration-skip: objects;
146
+ }
147
+ a:hover {
148
+ color: #0056b3;
149
+ text-decoration: underline;
150
+ }
151
+
152
+ a:not([href]):not([tabindex]) {
153
+ text-decoration: none;
154
+ }
155
+ a:not([href]):not([tabindex]):focus,
156
+ a:not([href]):not([tabindex]):hover {
157
+ text-decoration: none;
158
+ }
159
+ a:not([href]):not([tabindex]):focus {
160
+ outline: 0;
161
+ }
162
+
163
+ pre,
164
+ code,
165
+ kbd,
166
+ samp {
167
+ font-family: monospace, monospace;
168
+ font-size: 1em;
169
+ }
170
+ pre {
171
+ margin-top: 0;
172
+
173
+ margin-bottom: 1rem;
174
+ overflow: auto;
175
+ -ms-overflow-style: scrollbar;
176
+ }
177
+
178
+ figure {
179
+ margin: 0 0 1rem;
180
+ }
181
+
182
+ img {
183
+ vertical-align: middle;
184
+ border-style: none;
185
+ }
186
+ svg:not(:root) {
187
+ overflow: hidden;
188
+ }
189
+
190
+ a,
191
+ area,
192
+ button,
193
+ [role='button'],
194
+ input:not([type='range']),
195
+ label,
196
+ select,
197
+ summary,
198
+ textarea {
199
+ -ms-touch-action: manipulation;
200
+ touch-action: manipulation;
201
+ }
202
+
203
+ table {
204
+ border-collapse: collapse;
205
+ }
206
+ caption {
207
+ padding-top: 0.75rem;
208
+ padding-bottom: 0.75rem;
209
+ color: #868e96;
210
+ text-align: left;
211
+ caption-side: bottom;
212
+ }
213
+ th {
214
+ text-align: inherit;
215
+ }
216
+
217
+ label {
218
+ display: inline-block;
219
+ margin-bottom: 0.5rem;
220
+ }
221
+
222
+ button {
223
+ border-radius: 0;
224
+ }
225
+
226
+ button:focus {
227
+ outline: 1px dotted;
228
+ outline: 5px auto -webkit-focus-ring-color;
229
+ }
230
+ input,
231
+ button,
232
+ select,
233
+ optgroup,
234
+ textarea {
235
+ margin: 0;
236
+ font-family: inherit;
237
+ font-size: inherit;
238
+ line-height: inherit;
239
+ }
240
+ button,
241
+ input {
242
+ overflow: visible;
243
+ }
244
+ button,
245
+ select {
246
+ text-transform: none;
247
+ }
248
+
249
+ button,
250
+ html [type='button'],
251
+ [type='reset'],
252
+ [type='submit'] {
253
+ -webkit-appearance: button;
254
+ }
255
+
256
+ button::-moz-focus-inner,
257
+ [type='button']::-moz-focus-inner,
258
+ [type='reset']::-moz-focus-inner,
259
+ [type='submit']::-moz-focus-inner {
260
+ padding: 0;
261
+ border-style: none;
262
+ }
263
+ input[type='radio'],
264
+ input[type='checkbox'] {
265
+ box-sizing: border-box;
266
+ padding: 0;
267
+ }
268
+ input[type='date'],
269
+ input[type='time'],
270
+ input[type='datetime-local'],
271
+ input[type='month'] {
272
+ -webkit-appearance: listbox;
273
+ }
274
+ textarea {
275
+ overflow: auto;
276
+ resize: vertical;
277
+ }
278
+ fieldset {
279
+ min-width: 0;
280
+ padding: 0;
281
+ margin: 0;
282
+ border: 0;
283
+ }
284
+
285
+ legend {
286
+ display: block;
287
+ width: 100%;
288
+ max-width: 100%;
289
+ padding: 0;
290
+ margin-bottom: 0.5rem;
291
+ font-size: 1.5rem;
292
+ line-height: inherit;
293
+ color: inherit;
294
+ white-space: normal;
295
+ }
296
+ progress {
297
+ vertical-align: baseline;
298
+ }
299
+
300
+ [type='number']::-webkit-inner-spin-button,
301
+ [type='number']::-webkit-outer-spin-button {
302
+ height: auto;
303
+ }
304
+ [type='search'] {
305
+ outline-offset: -2px;
306
+ -webkit-appearance: none;
307
+ }
308
+
309
+ [type='search']::-webkit-search-cancel-button,
310
+ [type='search']::-webkit-search-decoration {
311
+ -webkit-appearance: none;
312
+ }
313
+
314
+ ::-webkit-file-upload-button {
315
+ font: inherit;
316
+ -webkit-appearance: button;
317
+ }
318
+
319
+ output {
320
+ display: inline-block;
321
+ }
322
+ summary {
323
+ display: list-item;
324
+ }
325
+ template {
326
+ display: none;
327
+ }
328
+
329
+ [hidden] {
330
+ display: none !important;
331
+ }
332
+
333
+ ul,
334
+ ul li {
335
+ list-style-type: none;
336
+ padding-left: 0;
337
+ }
338
+
339
+ @keyframes placeHolderShimmer {
340
+ 0% {
341
+ background-position: 0px 0;
342
+ }
343
+ 100% {
344
+ background-position: 100vw 0;
345
+ }
346
+ }
347
+
348
+ #__next {
349
+ position: relative;
350
+ z-index: 1;
351
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinity-forge",
3
- "version": "7.2.6",
3
+ "version": "7.2.7",
4
4
  "description": "codie Library",
5
5
  "main": "./dist/index",
6
6
  "module": "./dist/index",
File without changes