flowlink-auth 2.7.4 → 2.7.5

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.
package/dist/index.css ADDED
@@ -0,0 +1,694 @@
1
+ /* ../node_modules/react-toastify/dist/ReactToastify.css */
2
+ :root {
3
+ --toastify-color-light: #fff;
4
+ --toastify-color-dark: #121212;
5
+ --toastify-color-info: #3498db;
6
+ --toastify-color-success: #07bc0c;
7
+ --toastify-color-warning: #f1c40f;
8
+ --toastify-color-error: hsl(6, 78%, 57%);
9
+ --toastify-color-transparent: rgba(255, 255, 255, 0.7);
10
+ --toastify-icon-color-info: var(--toastify-color-info);
11
+ --toastify-icon-color-success: var(--toastify-color-success);
12
+ --toastify-icon-color-warning: var(--toastify-color-warning);
13
+ --toastify-icon-color-error: var(--toastify-color-error);
14
+ --toastify-container-width: fit-content;
15
+ --toastify-toast-width: 320px;
16
+ --toastify-toast-offset: 16px;
17
+ --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
18
+ --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
19
+ --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
20
+ --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
21
+ --toastify-toast-background: #fff;
22
+ --toastify-toast-padding: 14px;
23
+ --toastify-toast-min-height: 64px;
24
+ --toastify-toast-max-height: 800px;
25
+ --toastify-toast-bd-radius: 6px;
26
+ --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
27
+ --toastify-font-family: sans-serif;
28
+ --toastify-z-index: 9999;
29
+ --toastify-text-color-light: #757575;
30
+ --toastify-text-color-dark: #fff;
31
+ --toastify-text-color-info: #fff;
32
+ --toastify-text-color-success: #fff;
33
+ --toastify-text-color-warning: #fff;
34
+ --toastify-text-color-error: #fff;
35
+ --toastify-spinner-color: #616161;
36
+ --toastify-spinner-color-empty-area: #e0e0e0;
37
+ --toastify-color-progress-light:
38
+ linear-gradient(
39
+ to right,
40
+ #4cd964,
41
+ #5ac8fa,
42
+ #007aff,
43
+ #34aadc,
44
+ #5856d6,
45
+ #ff2d55);
46
+ --toastify-color-progress-dark: #bb86fc;
47
+ --toastify-color-progress-info: var(--toastify-color-info);
48
+ --toastify-color-progress-success: var(--toastify-color-success);
49
+ --toastify-color-progress-warning: var(--toastify-color-warning);
50
+ --toastify-color-progress-error: var(--toastify-color-error);
51
+ --toastify-color-progress-bgo: 0.2;
52
+ }
53
+ .Toastify__toast-container {
54
+ z-index: var(--toastify-z-index);
55
+ -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
56
+ position: fixed;
57
+ width: var(--toastify-container-width);
58
+ box-sizing: border-box;
59
+ color: #fff;
60
+ display: flex;
61
+ flex-direction: column;
62
+ }
63
+ .Toastify__toast-container--top-left {
64
+ top: var(--toastify-toast-top);
65
+ left: var(--toastify-toast-left);
66
+ }
67
+ .Toastify__toast-container--top-center {
68
+ top: var(--toastify-toast-top);
69
+ left: 50%;
70
+ transform: translateX(-50%);
71
+ align-items: center;
72
+ }
73
+ .Toastify__toast-container--top-right {
74
+ top: var(--toastify-toast-top);
75
+ right: var(--toastify-toast-right);
76
+ align-items: end;
77
+ }
78
+ .Toastify__toast-container--bottom-left {
79
+ bottom: var(--toastify-toast-bottom);
80
+ left: var(--toastify-toast-left);
81
+ }
82
+ .Toastify__toast-container--bottom-center {
83
+ bottom: var(--toastify-toast-bottom);
84
+ left: 50%;
85
+ transform: translateX(-50%);
86
+ align-items: center;
87
+ }
88
+ .Toastify__toast-container--bottom-right {
89
+ bottom: var(--toastify-toast-bottom);
90
+ right: var(--toastify-toast-right);
91
+ align-items: end;
92
+ }
93
+ .Toastify__toast {
94
+ --y: 0;
95
+ position: relative;
96
+ touch-action: none;
97
+ width: var(--toastify-toast-width);
98
+ min-height: var(--toastify-toast-min-height);
99
+ box-sizing: border-box;
100
+ margin-bottom: 1rem;
101
+ padding: var(--toastify-toast-padding);
102
+ border-radius: var(--toastify-toast-bd-radius);
103
+ box-shadow: var(--toastify-toast-shadow);
104
+ max-height: var(--toastify-toast-max-height);
105
+ font-family: var(--toastify-font-family);
106
+ z-index: 0;
107
+ display: flex;
108
+ flex: 1 auto;
109
+ align-items: center;
110
+ word-break: break-word;
111
+ }
112
+ @media only screen and (max-width: 480px) {
113
+ .Toastify__toast-container {
114
+ width: 100vw;
115
+ left: env(safe-area-inset-left);
116
+ margin: 0;
117
+ }
118
+ .Toastify__toast-container--top-left,
119
+ .Toastify__toast-container--top-center,
120
+ .Toastify__toast-container--top-right {
121
+ top: env(safe-area-inset-top);
122
+ transform: translateX(0);
123
+ }
124
+ .Toastify__toast-container--bottom-left,
125
+ .Toastify__toast-container--bottom-center,
126
+ .Toastify__toast-container--bottom-right {
127
+ bottom: env(safe-area-inset-bottom);
128
+ transform: translateX(0);
129
+ }
130
+ .Toastify__toast-container--rtl {
131
+ right: env(safe-area-inset-right);
132
+ left: initial;
133
+ }
134
+ .Toastify__toast {
135
+ --toastify-toast-width: 100%;
136
+ margin-bottom: 0;
137
+ border-radius: 0;
138
+ }
139
+ }
140
+ .Toastify__toast-container[data-stacked=true] {
141
+ width: var(--toastify-toast-width);
142
+ }
143
+ .Toastify__toast--stacked {
144
+ position: absolute;
145
+ width: 100%;
146
+ transform: translate3d(0, var(--y), 0) scale(var(--s));
147
+ transition: transform 0.3s;
148
+ }
149
+ .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
150
+ .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
151
+ transition: opacity 0.1s;
152
+ }
153
+ .Toastify__toast--stacked[data-collapsed=false] {
154
+ overflow: visible;
155
+ }
156
+ .Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
157
+ opacity: 0;
158
+ }
159
+ .Toastify__toast--stacked:after {
160
+ content: "";
161
+ position: absolute;
162
+ left: 0;
163
+ right: 0;
164
+ height: calc(var(--g) * 1px);
165
+ bottom: 100%;
166
+ }
167
+ .Toastify__toast--stacked[data-pos=top] {
168
+ top: 0;
169
+ }
170
+ .Toastify__toast--stacked[data-pos=bot] {
171
+ bottom: 0;
172
+ }
173
+ .Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
174
+ transform-origin: top;
175
+ }
176
+ .Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
177
+ transform-origin: bottom;
178
+ }
179
+ .Toastify__toast--stacked:before {
180
+ content: "";
181
+ position: absolute;
182
+ left: 0;
183
+ right: 0;
184
+ bottom: 0;
185
+ height: 100%;
186
+ transform: scaleY(3);
187
+ z-index: -1;
188
+ }
189
+ .Toastify__toast--rtl {
190
+ direction: rtl;
191
+ }
192
+ .Toastify__toast--close-on-click {
193
+ cursor: pointer;
194
+ }
195
+ .Toastify__toast-icon {
196
+ margin-inline-end: 10px;
197
+ width: 22px;
198
+ flex-shrink: 0;
199
+ display: flex;
200
+ }
201
+ .Toastify--animate {
202
+ animation-fill-mode: both;
203
+ animation-duration: 0.5s;
204
+ }
205
+ .Toastify--animate-icon {
206
+ animation-fill-mode: both;
207
+ animation-duration: 0.3s;
208
+ }
209
+ .Toastify__toast-theme--dark {
210
+ background: var(--toastify-color-dark);
211
+ color: var(--toastify-text-color-dark);
212
+ }
213
+ .Toastify__toast-theme--light {
214
+ background: var(--toastify-color-light);
215
+ color: var(--toastify-text-color-light);
216
+ }
217
+ .Toastify__toast-theme--colored.Toastify__toast--default {
218
+ background: var(--toastify-color-light);
219
+ color: var(--toastify-text-color-light);
220
+ }
221
+ .Toastify__toast-theme--colored.Toastify__toast--info {
222
+ color: var(--toastify-text-color-info);
223
+ background: var(--toastify-color-info);
224
+ }
225
+ .Toastify__toast-theme--colored.Toastify__toast--success {
226
+ color: var(--toastify-text-color-success);
227
+ background: var(--toastify-color-success);
228
+ }
229
+ .Toastify__toast-theme--colored.Toastify__toast--warning {
230
+ color: var(--toastify-text-color-warning);
231
+ background: var(--toastify-color-warning);
232
+ }
233
+ .Toastify__toast-theme--colored.Toastify__toast--error {
234
+ color: var(--toastify-text-color-error);
235
+ background: var(--toastify-color-error);
236
+ }
237
+ .Toastify__progress-bar-theme--light {
238
+ background: var(--toastify-color-progress-light);
239
+ }
240
+ .Toastify__progress-bar-theme--dark {
241
+ background: var(--toastify-color-progress-dark);
242
+ }
243
+ .Toastify__progress-bar--info {
244
+ background: var(--toastify-color-progress-info);
245
+ }
246
+ .Toastify__progress-bar--success {
247
+ background: var(--toastify-color-progress-success);
248
+ }
249
+ .Toastify__progress-bar--warning {
250
+ background: var(--toastify-color-progress-warning);
251
+ }
252
+ .Toastify__progress-bar--error {
253
+ background: var(--toastify-color-progress-error);
254
+ }
255
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
256
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
257
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
258
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
259
+ background: var(--toastify-color-transparent);
260
+ }
261
+ .Toastify__close-button {
262
+ color: #fff;
263
+ position: absolute;
264
+ top: 6px;
265
+ right: 6px;
266
+ background: transparent;
267
+ outline: none;
268
+ border: none;
269
+ padding: 0;
270
+ cursor: pointer;
271
+ opacity: 0.7;
272
+ transition: 0.3s ease;
273
+ z-index: 1;
274
+ }
275
+ .Toastify__toast--rtl .Toastify__close-button {
276
+ left: 6px;
277
+ right: unset;
278
+ }
279
+ .Toastify__close-button--light {
280
+ color: #000;
281
+ opacity: 0.3;
282
+ }
283
+ .Toastify__close-button > svg {
284
+ fill: currentColor;
285
+ height: 16px;
286
+ width: 14px;
287
+ }
288
+ .Toastify__close-button:hover,
289
+ .Toastify__close-button:focus {
290
+ opacity: 1;
291
+ }
292
+ @keyframes Toastify__trackProgress {
293
+ 0% {
294
+ transform: scaleX(1);
295
+ }
296
+ 100% {
297
+ transform: scaleX(0);
298
+ }
299
+ }
300
+ .Toastify__progress-bar {
301
+ position: absolute;
302
+ bottom: 0;
303
+ left: 0;
304
+ width: 100%;
305
+ height: 100%;
306
+ z-index: 1;
307
+ opacity: 0.7;
308
+ transform-origin: left;
309
+ }
310
+ .Toastify__progress-bar--animated {
311
+ animation: Toastify__trackProgress linear 1 forwards;
312
+ }
313
+ .Toastify__progress-bar--controlled {
314
+ transition: transform 0.2s;
315
+ }
316
+ .Toastify__progress-bar--rtl {
317
+ right: 0;
318
+ left: initial;
319
+ transform-origin: right;
320
+ border-bottom-left-radius: initial;
321
+ }
322
+ .Toastify__progress-bar--wrp {
323
+ position: absolute;
324
+ overflow: hidden;
325
+ bottom: 0;
326
+ left: 0;
327
+ width: 100%;
328
+ height: 5px;
329
+ border-bottom-left-radius: var(--toastify-toast-bd-radius);
330
+ border-bottom-right-radius: var(--toastify-toast-bd-radius);
331
+ }
332
+ .Toastify__progress-bar--wrp[data-hidden=true] {
333
+ opacity: 0;
334
+ }
335
+ .Toastify__progress-bar--bg {
336
+ opacity: var(--toastify-color-progress-bgo);
337
+ width: 100%;
338
+ height: 100%;
339
+ }
340
+ .Toastify__spinner {
341
+ width: 20px;
342
+ height: 20px;
343
+ box-sizing: border-box;
344
+ border: 2px solid;
345
+ border-radius: 100%;
346
+ border-color: var(--toastify-spinner-color-empty-area);
347
+ border-right-color: var(--toastify-spinner-color);
348
+ animation: Toastify__spin 0.65s linear infinite;
349
+ }
350
+ @keyframes Toastify__bounceInRight {
351
+ from, 60%, 75%, 90%, to {
352
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
353
+ }
354
+ from {
355
+ opacity: 0;
356
+ transform: translate3d(3000px, 0, 0);
357
+ }
358
+ 60% {
359
+ opacity: 1;
360
+ transform: translate3d(-25px, 0, 0);
361
+ }
362
+ 75% {
363
+ transform: translate3d(10px, 0, 0);
364
+ }
365
+ 90% {
366
+ transform: translate3d(-5px, 0, 0);
367
+ }
368
+ to {
369
+ transform: none;
370
+ }
371
+ }
372
+ @keyframes Toastify__bounceOutRight {
373
+ 20% {
374
+ opacity: 1;
375
+ transform: translate3d(-20px, var(--y), 0);
376
+ }
377
+ to {
378
+ opacity: 0;
379
+ transform: translate3d(2000px, var(--y), 0);
380
+ }
381
+ }
382
+ @keyframes Toastify__bounceInLeft {
383
+ from, 60%, 75%, 90%, to {
384
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
385
+ }
386
+ 0% {
387
+ opacity: 0;
388
+ transform: translate3d(-3000px, 0, 0);
389
+ }
390
+ 60% {
391
+ opacity: 1;
392
+ transform: translate3d(25px, 0, 0);
393
+ }
394
+ 75% {
395
+ transform: translate3d(-10px, 0, 0);
396
+ }
397
+ 90% {
398
+ transform: translate3d(5px, 0, 0);
399
+ }
400
+ to {
401
+ transform: none;
402
+ }
403
+ }
404
+ @keyframes Toastify__bounceOutLeft {
405
+ 20% {
406
+ opacity: 1;
407
+ transform: translate3d(20px, var(--y), 0);
408
+ }
409
+ to {
410
+ opacity: 0;
411
+ transform: translate3d(-2000px, var(--y), 0);
412
+ }
413
+ }
414
+ @keyframes Toastify__bounceInUp {
415
+ from, 60%, 75%, 90%, to {
416
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
417
+ }
418
+ from {
419
+ opacity: 0;
420
+ transform: translate3d(0, 3000px, 0);
421
+ }
422
+ 60% {
423
+ opacity: 1;
424
+ transform: translate3d(0, -20px, 0);
425
+ }
426
+ 75% {
427
+ transform: translate3d(0, 10px, 0);
428
+ }
429
+ 90% {
430
+ transform: translate3d(0, -5px, 0);
431
+ }
432
+ to {
433
+ transform: translate3d(0, 0, 0);
434
+ }
435
+ }
436
+ @keyframes Toastify__bounceOutUp {
437
+ 20% {
438
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
439
+ }
440
+ 40%, 45% {
441
+ opacity: 1;
442
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
443
+ }
444
+ to {
445
+ opacity: 0;
446
+ transform: translate3d(0, -2000px, 0);
447
+ }
448
+ }
449
+ @keyframes Toastify__bounceInDown {
450
+ from, 60%, 75%, 90%, to {
451
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
452
+ }
453
+ 0% {
454
+ opacity: 0;
455
+ transform: translate3d(0, -3000px, 0);
456
+ }
457
+ 60% {
458
+ opacity: 1;
459
+ transform: translate3d(0, 25px, 0);
460
+ }
461
+ 75% {
462
+ transform: translate3d(0, -10px, 0);
463
+ }
464
+ 90% {
465
+ transform: translate3d(0, 5px, 0);
466
+ }
467
+ to {
468
+ transform: none;
469
+ }
470
+ }
471
+ @keyframes Toastify__bounceOutDown {
472
+ 20% {
473
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
474
+ }
475
+ 40%, 45% {
476
+ opacity: 1;
477
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
478
+ }
479
+ to {
480
+ opacity: 0;
481
+ transform: translate3d(0, 2000px, 0);
482
+ }
483
+ }
484
+ .Toastify__bounce-enter--top-left,
485
+ .Toastify__bounce-enter--bottom-left {
486
+ animation-name: Toastify__bounceInLeft;
487
+ }
488
+ .Toastify__bounce-enter--top-right,
489
+ .Toastify__bounce-enter--bottom-right {
490
+ animation-name: Toastify__bounceInRight;
491
+ }
492
+ .Toastify__bounce-enter--top-center {
493
+ animation-name: Toastify__bounceInDown;
494
+ }
495
+ .Toastify__bounce-enter--bottom-center {
496
+ animation-name: Toastify__bounceInUp;
497
+ }
498
+ .Toastify__bounce-exit--top-left,
499
+ .Toastify__bounce-exit--bottom-left {
500
+ animation-name: Toastify__bounceOutLeft;
501
+ }
502
+ .Toastify__bounce-exit--top-right,
503
+ .Toastify__bounce-exit--bottom-right {
504
+ animation-name: Toastify__bounceOutRight;
505
+ }
506
+ .Toastify__bounce-exit--top-center {
507
+ animation-name: Toastify__bounceOutUp;
508
+ }
509
+ .Toastify__bounce-exit--bottom-center {
510
+ animation-name: Toastify__bounceOutDown;
511
+ }
512
+ @keyframes Toastify__zoomIn {
513
+ from {
514
+ opacity: 0;
515
+ transform: scale3d(0.3, 0.3, 0.3);
516
+ }
517
+ 50% {
518
+ opacity: 1;
519
+ }
520
+ }
521
+ @keyframes Toastify__zoomOut {
522
+ from {
523
+ opacity: 1;
524
+ }
525
+ 50% {
526
+ opacity: 0;
527
+ transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
528
+ }
529
+ to {
530
+ opacity: 0;
531
+ }
532
+ }
533
+ .Toastify__zoom-enter {
534
+ animation-name: Toastify__zoomIn;
535
+ }
536
+ .Toastify__zoom-exit {
537
+ animation-name: Toastify__zoomOut;
538
+ }
539
+ @keyframes Toastify__flipIn {
540
+ from {
541
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
542
+ animation-timing-function: ease-in;
543
+ opacity: 0;
544
+ }
545
+ 40% {
546
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
547
+ animation-timing-function: ease-in;
548
+ }
549
+ 60% {
550
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
551
+ opacity: 1;
552
+ }
553
+ 80% {
554
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
555
+ }
556
+ to {
557
+ transform: perspective(400px);
558
+ }
559
+ }
560
+ @keyframes Toastify__flipOut {
561
+ from {
562
+ transform: translate3d(0, var(--y), 0) perspective(400px);
563
+ }
564
+ 30% {
565
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
566
+ opacity: 1;
567
+ }
568
+ to {
569
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
570
+ opacity: 0;
571
+ }
572
+ }
573
+ .Toastify__flip-enter {
574
+ animation-name: Toastify__flipIn;
575
+ }
576
+ .Toastify__flip-exit {
577
+ animation-name: Toastify__flipOut;
578
+ }
579
+ @keyframes Toastify__slideInRight {
580
+ from {
581
+ transform: translate3d(110%, 0, 0);
582
+ visibility: visible;
583
+ }
584
+ to {
585
+ transform: translate3d(0, var(--y), 0);
586
+ }
587
+ }
588
+ @keyframes Toastify__slideInLeft {
589
+ from {
590
+ transform: translate3d(-110%, 0, 0);
591
+ visibility: visible;
592
+ }
593
+ to {
594
+ transform: translate3d(0, var(--y), 0);
595
+ }
596
+ }
597
+ @keyframes Toastify__slideInUp {
598
+ from {
599
+ transform: translate3d(0, 110%, 0);
600
+ visibility: visible;
601
+ }
602
+ to {
603
+ transform: translate3d(0, var(--y), 0);
604
+ }
605
+ }
606
+ @keyframes Toastify__slideInDown {
607
+ from {
608
+ transform: translate3d(0, -110%, 0);
609
+ visibility: visible;
610
+ }
611
+ to {
612
+ transform: translate3d(0, var(--y), 0);
613
+ }
614
+ }
615
+ @keyframes Toastify__slideOutRight {
616
+ from {
617
+ transform: translate3d(0, var(--y), 0);
618
+ }
619
+ to {
620
+ visibility: hidden;
621
+ transform: translate3d(110%, var(--y), 0);
622
+ }
623
+ }
624
+ @keyframes Toastify__slideOutLeft {
625
+ from {
626
+ transform: translate3d(0, var(--y), 0);
627
+ }
628
+ to {
629
+ visibility: hidden;
630
+ transform: translate3d(-110%, var(--y), 0);
631
+ }
632
+ }
633
+ @keyframes Toastify__slideOutDown {
634
+ from {
635
+ transform: translate3d(0, var(--y), 0);
636
+ }
637
+ to {
638
+ visibility: hidden;
639
+ transform: translate3d(0, 500px, 0);
640
+ }
641
+ }
642
+ @keyframes Toastify__slideOutUp {
643
+ from {
644
+ transform: translate3d(0, var(--y), 0);
645
+ }
646
+ to {
647
+ visibility: hidden;
648
+ transform: translate3d(0, -500px, 0);
649
+ }
650
+ }
651
+ .Toastify__slide-enter--top-left,
652
+ .Toastify__slide-enter--bottom-left {
653
+ animation-name: Toastify__slideInLeft;
654
+ }
655
+ .Toastify__slide-enter--top-right,
656
+ .Toastify__slide-enter--bottom-right {
657
+ animation-name: Toastify__slideInRight;
658
+ }
659
+ .Toastify__slide-enter--top-center {
660
+ animation-name: Toastify__slideInDown;
661
+ }
662
+ .Toastify__slide-enter--bottom-center {
663
+ animation-name: Toastify__slideInUp;
664
+ }
665
+ .Toastify__slide-exit--top-left,
666
+ .Toastify__slide-exit--bottom-left {
667
+ animation-name: Toastify__slideOutLeft;
668
+ animation-timing-function: ease-in;
669
+ animation-duration: 0.3s;
670
+ }
671
+ .Toastify__slide-exit--top-right,
672
+ .Toastify__slide-exit--bottom-right {
673
+ animation-name: Toastify__slideOutRight;
674
+ animation-timing-function: ease-in;
675
+ animation-duration: 0.3s;
676
+ }
677
+ .Toastify__slide-exit--top-center {
678
+ animation-name: Toastify__slideOutUp;
679
+ animation-timing-function: ease-in;
680
+ animation-duration: 0.3s;
681
+ }
682
+ .Toastify__slide-exit--bottom-center {
683
+ animation-name: Toastify__slideOutDown;
684
+ animation-timing-function: ease-in;
685
+ animation-duration: 0.3s;
686
+ }
687
+ @keyframes Toastify__spin {
688
+ from {
689
+ transform: rotate(0deg);
690
+ }
691
+ to {
692
+ transform: rotate(360deg);
693
+ }
694
+ }