snap-ally 0.2.5-beta → 0.3.0
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/A11yReportAssets.d.ts +5 -12
- package/dist/A11yReportAssets.js +16 -82
- package/dist/A11yScanner.d.ts +2 -21
- package/dist/A11yScanner.js +16 -22
- package/dist/A11yTimeUtils.js +11 -23
- package/dist/A11yVisualReporter.d.ts +50 -0
- package/dist/A11yVisualReporter.js +188 -0
- package/dist/AccessibilityReporterOptions.d.ts +24 -0
- package/dist/AccessibilityReporterOptions.js +5 -0
- package/dist/ResolvedColors.d.ts +15 -0
- package/dist/ResolvedColors.js +20 -0
- package/dist/SnapAllyReporter.d.ts +12 -72
- package/dist/SnapAllyReporter.js +218 -329
- package/dist/core/A11yHtmlRenderer.d.ts +17 -0
- package/dist/core/A11yHtmlRenderer.js +118 -0
- package/dist/core/A11yReportAssets.d.ts +30 -0
- package/dist/core/A11yReportAssets.js +127 -0
- package/dist/core/A11yScanner.d.ts +8 -0
- package/dist/core/A11yScanner.js +178 -0
- package/dist/core/A11yVisualReporter.d.ts +50 -0
- package/dist/core/A11yVisualReporter.js +188 -0
- package/dist/core/HtmlRenderer.d.ts +14 -0
- package/dist/core/HtmlRenderer.js +106 -0
- package/dist/core/ReportAssets.d.ts +29 -0
- package/dist/core/ReportAssets.js +126 -0
- package/dist/core/Scanner.d.ts +7 -0
- package/dist/core/Scanner.js +162 -0
- package/dist/core/VisualReporter.d.ts +54 -0
- package/dist/core/VisualReporter.js +192 -0
- package/dist/index.d.ts +6 -6
- package/dist/index.js +13 -12
- package/dist/models/A11yDataSource.d.ts +15 -0
- package/dist/models/A11yDataSource.js +2 -0
- package/dist/models/A11yError.d.ts +34 -0
- package/dist/models/A11yError.js +11 -0
- package/dist/models/A11yScannerOptions.d.ts +24 -0
- package/dist/models/A11yScannerOptions.js +2 -0
- package/dist/models/AccessibilityReporterOptions.d.ts +24 -0
- package/dist/models/AccessibilityReporterOptions.js +5 -0
- package/dist/models/DataSource.d.ts +15 -0
- package/dist/models/DataSource.js +2 -0
- package/dist/models/ImagePath.d.ts +5 -0
- package/dist/models/ImagePath.js +3 -0
- package/dist/models/ReportData.d.ts +24 -0
- package/dist/models/ReportData.js +2 -0
- package/dist/models/ReporterOptions.d.ts +24 -0
- package/dist/models/ReporterOptions.js +5 -0
- package/dist/models/ResolvedColors.d.ts +16 -0
- package/dist/models/ResolvedColors.js +24 -0
- package/dist/models/ScannerOptions.d.ts +30 -0
- package/dist/models/ScannerOptions.js +2 -0
- package/dist/models/Severity.d.ts +7 -0
- package/dist/models/Severity.js +11 -0
- package/dist/models/Target.d.ts +10 -0
- package/dist/models/Target.js +3 -0
- package/dist/models/TestResults.d.ts +41 -0
- package/dist/models/TestResults.js +2 -0
- package/dist/models/TestStatusIcon.d.ts +8 -0
- package/dist/models/TestStatusIcon.js +12 -0
- package/dist/models/TestSummary.d.ts +34 -0
- package/dist/models/TestSummary.js +2 -0
- package/dist/models/Violation.d.ts +13 -0
- package/dist/models/Violation.js +2 -0
- package/dist/models/index.d.ts +12 -113
- package/dist/models/index.js +26 -16
- package/dist/templates/accessibility-report.html +75 -101
- package/dist/templates/execution-summary.html +37 -103
- package/dist/templates/global-report-styles.css +400 -9
- package/dist/templates/report-app.js +171 -73
- package/dist/templates/test-execution-report.html +84 -113
- package/dist/utils/A11yTimeUtils.d.ts +13 -0
- package/dist/utils/A11yTimeUtils.js +40 -0
- package/dist/utils/TimeUtils.d.ts +13 -0
- package/dist/utils/TimeUtils.js +39 -0
- package/package.json +2 -2
|
@@ -13,17 +13,153 @@
|
|
|
13
13
|
--skipped: #6366f1;
|
|
14
14
|
|
|
15
15
|
/* Default Severity Colors - These can be overridden via JS dynamically */
|
|
16
|
-
--critical: #
|
|
17
|
-
--serious: #
|
|
18
|
-
--moderate: #
|
|
19
|
-
--minor: #
|
|
16
|
+
--critical: #dc2626;
|
|
17
|
+
--serious: #ea580c;
|
|
18
|
+
--moderate: #f59e0b;
|
|
19
|
+
--minor: #f0f06f;
|
|
20
20
|
|
|
21
21
|
--glass-bg: rgba(255, 255, 255, 0.85);
|
|
22
22
|
--glass-border: rgba(255, 255, 255, 0.6);
|
|
23
23
|
--glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
|
|
24
24
|
--card-radius: 24px;
|
|
25
|
+
--focus-ring: 0 0 0 3px rgba(99, 102, 241, 0.4);
|
|
25
26
|
}
|
|
26
27
|
|
|
28
|
+
/* Accessibility Helpers */
|
|
29
|
+
.skip-link {
|
|
30
|
+
position: absolute;
|
|
31
|
+
top: -100px;
|
|
32
|
+
left: 40px;
|
|
33
|
+
background: var(--primary);
|
|
34
|
+
color: white;
|
|
35
|
+
padding: 8px 16px;
|
|
36
|
+
z-index: 2000;
|
|
37
|
+
border-radius: 0 0 8px 8px;
|
|
38
|
+
text-decoration: none;
|
|
39
|
+
font-weight: 700;
|
|
40
|
+
transition: top 0.2s;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.skip-link:focus {
|
|
44
|
+
top: 0;
|
|
45
|
+
outline: none;
|
|
46
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* Enhanced Focus */
|
|
50
|
+
a:focus-visible,
|
|
51
|
+
button:focus-visible,
|
|
52
|
+
input:focus-visible,
|
|
53
|
+
select:focus-visible {
|
|
54
|
+
outline: 2px solid var(--primary);
|
|
55
|
+
outline-offset: 3px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* Global Helper Classes */
|
|
59
|
+
.d-flex-between {
|
|
60
|
+
display: flex;
|
|
61
|
+
justify-content: space-between;
|
|
62
|
+
align-items: center;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.d-flex-align-center {
|
|
66
|
+
display: flex;
|
|
67
|
+
align-items: center;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.gap-8 {
|
|
71
|
+
gap: 8px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.gap-12 {
|
|
75
|
+
gap: 12px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.gap-16 {
|
|
79
|
+
gap: 16px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.gap-24 {
|
|
83
|
+
gap: 24px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.mt-16 {
|
|
87
|
+
margin-top: 16px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.mb-4 {
|
|
91
|
+
margin-bottom: 4px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.mb-12 {
|
|
95
|
+
margin-bottom: 12px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.hidden {
|
|
99
|
+
display: none !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.max-w-75 {
|
|
103
|
+
max-width: 75%;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.text-muted-sm {
|
|
107
|
+
color: var(--text-muted);
|
|
108
|
+
font-size: 0.9rem;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.text-main-lg {
|
|
112
|
+
color: var(--text-main);
|
|
113
|
+
font-size: 1.1rem;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.cursor-default {
|
|
117
|
+
cursor: default;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.no-underline {
|
|
121
|
+
text-decoration: none;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.break-all {
|
|
125
|
+
word-break: break-all;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.section-heading-lg {
|
|
129
|
+
font-family: 'Outfit', sans-serif;
|
|
130
|
+
font-size: 1.25rem;
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.err-badge {
|
|
135
|
+
background: #fee2e2;
|
|
136
|
+
color: #ef4444;
|
|
137
|
+
font-size: 0.7rem;
|
|
138
|
+
font-weight: 800;
|
|
139
|
+
padding: 2px 8px;
|
|
140
|
+
border-radius: 6px;
|
|
141
|
+
white-space: nowrap;
|
|
142
|
+
border: 1px solid #fecdd3;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* Sizing Helpers */
|
|
146
|
+
.fs-14 { font-size: 14px !important; }
|
|
147
|
+
.fs-16 { font-size: 16px !important; }
|
|
148
|
+
.fs-20 { font-size: 20px !important; }
|
|
149
|
+
.fs-24 { font-size: 24px !important; }
|
|
150
|
+
.fs-32 { font-size: 32px !important; }
|
|
151
|
+
|
|
152
|
+
/* Alignment Helpers */
|
|
153
|
+
.v-align-middle { vertical-align: middle !important; }
|
|
154
|
+
|
|
155
|
+
/* Styling Helpers */
|
|
156
|
+
.rounded-12 { border-radius: 12px !important; }
|
|
157
|
+
.min-h-150 { min-height: 150px !important; }
|
|
158
|
+
.fw-bold { font-weight: 700 !important; }
|
|
159
|
+
.text-primary { color: var(--primary) !important; }
|
|
160
|
+
.text-critical { color: #cc293d !important; }
|
|
161
|
+
.text-error-alt { color: #9f1239 !important; }
|
|
162
|
+
|
|
27
163
|
* {
|
|
28
164
|
box-sizing: border-box;
|
|
29
165
|
margin: 0;
|
|
@@ -637,6 +773,73 @@ li::marker {
|
|
|
637
773
|
border-radius: 6px;
|
|
638
774
|
}
|
|
639
775
|
|
|
776
|
+
.duration-pill {
|
|
777
|
+
background: #f1f5f9;
|
|
778
|
+
padding: 6px 14px;
|
|
779
|
+
border-radius: 12px;
|
|
780
|
+
font-size: 0.85rem;
|
|
781
|
+
color: var(--text-muted);
|
|
782
|
+
display: flex;
|
|
783
|
+
align-items: center;
|
|
784
|
+
gap: 6px;
|
|
785
|
+
font-weight: 500;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.metadata-strip {
|
|
789
|
+
background: rgba(0, 0, 0, 0.03);
|
|
790
|
+
padding: 12px 20px;
|
|
791
|
+
border-radius: 16px;
|
|
792
|
+
margin-top: 4px;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.meta-item {
|
|
796
|
+
display: flex;
|
|
797
|
+
align-items: center;
|
|
798
|
+
gap: 8px;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.meta-icon {
|
|
802
|
+
font-size: 18px;
|
|
803
|
+
color: var(--text-muted);
|
|
804
|
+
opacity: 0.7;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.meta-text {
|
|
808
|
+
font-size: 0.9rem;
|
|
809
|
+
font-weight: 600;
|
|
810
|
+
color: var(--text-main);
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.ms-auto {
|
|
814
|
+
margin-left: auto;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.a11y-audit-link {
|
|
818
|
+
color: var(--primary);
|
|
819
|
+
text-decoration: none;
|
|
820
|
+
font-weight: 700;
|
|
821
|
+
font-size: 0.85rem;
|
|
822
|
+
display: flex;
|
|
823
|
+
align-items: center;
|
|
824
|
+
gap: 6px;
|
|
825
|
+
padding: 6px 0;
|
|
826
|
+
transition: color 0.2s;
|
|
827
|
+
border-bottom: 2px solid transparent;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.a11y-audit-link:hover {
|
|
831
|
+
color: var(--primary-dark);
|
|
832
|
+
border-bottom-color: var(--primary);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.a11y-audit-link .link-arrow {
|
|
836
|
+
transition: transform 0.2s;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.a11y-audit-link:hover .link-arrow {
|
|
840
|
+
transform: translateX(3px);
|
|
841
|
+
}
|
|
842
|
+
|
|
640
843
|
/* Images & Media */
|
|
641
844
|
.screenshot-grid {
|
|
642
845
|
display: grid;
|
|
@@ -785,16 +988,44 @@ video {
|
|
|
785
988
|
color: var(--text-main);
|
|
786
989
|
}
|
|
787
990
|
|
|
788
|
-
.runtime-box {
|
|
789
|
-
font-size: 0.9rem;
|
|
790
|
-
color: var(--text-muted);
|
|
791
|
-
}
|
|
792
|
-
|
|
793
991
|
.runtime-val {
|
|
794
992
|
color: var(--text-main);
|
|
795
993
|
font-size: 1.1rem;
|
|
796
994
|
}
|
|
797
995
|
|
|
996
|
+
/* Stat Pills (A11y Badges) */
|
|
997
|
+
.stat-pill {
|
|
998
|
+
display: flex;
|
|
999
|
+
align-items: center;
|
|
1000
|
+
gap: 8px;
|
|
1001
|
+
padding: 8px 16px;
|
|
1002
|
+
border-radius: 12px;
|
|
1003
|
+
font-weight: 700;
|
|
1004
|
+
font-size: 0.95rem;
|
|
1005
|
+
white-space: nowrap;
|
|
1006
|
+
background: #fff;
|
|
1007
|
+
border: 1px solid #e2e8f0;
|
|
1008
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
|
|
1009
|
+
transition: all 0.2s ease;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.stat-pill-passed {
|
|
1013
|
+
background: #f0fdf4;
|
|
1014
|
+
color: #166534;
|
|
1015
|
+
border-color: #bbf7d0;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.stat-pill-failed {
|
|
1019
|
+
background: #fffafa;
|
|
1020
|
+
color: var(--failed);
|
|
1021
|
+
border-color: #fecdd3;
|
|
1022
|
+
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.08);
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.stat-pill-icon {
|
|
1026
|
+
font-size: 20px !important;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
798
1029
|
/* Tabs */
|
|
799
1030
|
.tabs-container {
|
|
800
1031
|
display: flex;
|
|
@@ -1410,6 +1641,116 @@ video {
|
|
|
1410
1641
|
vertical-align: middle;
|
|
1411
1642
|
}
|
|
1412
1643
|
|
|
1644
|
+
/* Repro Preview — Enriched Bug Modal Sections */
|
|
1645
|
+
.repro-preview-root {
|
|
1646
|
+
font-family: 'Inter', sans-serif;
|
|
1647
|
+
font-size: 0.9rem;
|
|
1648
|
+
color: var(--text-main);
|
|
1649
|
+
line-height: 1.6;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.repro-meta-pills {
|
|
1653
|
+
display: flex;
|
|
1654
|
+
gap: 8px;
|
|
1655
|
+
flex-wrap: wrap;
|
|
1656
|
+
margin-bottom: 16px;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
.repro-pill {
|
|
1660
|
+
display: inline-flex;
|
|
1661
|
+
align-items: center;
|
|
1662
|
+
padding: 3px 10px;
|
|
1663
|
+
border-radius: 20px;
|
|
1664
|
+
font-size: 0.78rem;
|
|
1665
|
+
font-weight: 700;
|
|
1666
|
+
letter-spacing: 0.3px;
|
|
1667
|
+
text-transform: uppercase;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
.repro-pill-id {
|
|
1671
|
+
background: var(--primary-soft);
|
|
1672
|
+
color: var(--primary-dark);
|
|
1673
|
+
border: 1px solid rgba(99, 102, 241, 0.2);
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.repro-pill-wcag {
|
|
1677
|
+
background: #f0fdf4;
|
|
1678
|
+
color: #166534;
|
|
1679
|
+
border: 1px solid #bbf7d0;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.repro-pill-sev-critical { background: rgba(220,38,38,0.1); color: var(--critical); border: 1px solid rgba(220,38,38,0.2); }
|
|
1683
|
+
.repro-pill-sev-serious { background: rgba(234,88,12,0.1); color: var(--serious); border: 1px solid rgba(234,88,12,0.2); }
|
|
1684
|
+
.repro-pill-sev-moderate { background: rgba(245,158,11,0.1); color: var(--moderate); border: 1px solid rgba(245,158,11,0.2); }
|
|
1685
|
+
.repro-pill-sev-minor { background: rgba(14,165,233,0.1); color: var(--minor); border: 1px solid rgba(14,165,233,0.2); }
|
|
1686
|
+
|
|
1687
|
+
.repro-section {
|
|
1688
|
+
margin-bottom: 14px;
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
.repro-section-label {
|
|
1692
|
+
font-size: 0.72rem;
|
|
1693
|
+
font-weight: 800;
|
|
1694
|
+
color: var(--text-muted);
|
|
1695
|
+
text-transform: uppercase;
|
|
1696
|
+
letter-spacing: 0.08em;
|
|
1697
|
+
margin-bottom: 6px;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.repro-mono-box {
|
|
1701
|
+
font-family: 'JetBrains Mono', 'Fira Mono', monospace;
|
|
1702
|
+
background: #fffcf0;
|
|
1703
|
+
padding: 12px 14px;
|
|
1704
|
+
border: 1px solid #e2e8f0;
|
|
1705
|
+
border-radius: 10px;
|
|
1706
|
+
font-size: 0.83rem;
|
|
1707
|
+
color: #334155;
|
|
1708
|
+
line-height: 1.5;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.repro-mono-box.repro-code {
|
|
1712
|
+
overflow-x: auto;
|
|
1713
|
+
white-space: pre-wrap;
|
|
1714
|
+
word-break: break-all;
|
|
1715
|
+
background: #f8fafc;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.repro-hint-box {
|
|
1719
|
+
background: #f0fdf4;
|
|
1720
|
+
border: 1px solid #bbf7d0;
|
|
1721
|
+
padding: 12px 14px;
|
|
1722
|
+
border-radius: 10px;
|
|
1723
|
+
display: flex;
|
|
1724
|
+
gap: 10px;
|
|
1725
|
+
align-items: flex-start;
|
|
1726
|
+
color: #166534;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
.repro-hint-icon {
|
|
1730
|
+
font-size: 20px !important;
|
|
1731
|
+
color: #16a34a;
|
|
1732
|
+
flex-shrink: 0;
|
|
1733
|
+
margin-top: 1px;
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
.repro-deque-link {
|
|
1737
|
+
display: inline-flex;
|
|
1738
|
+
align-items: center;
|
|
1739
|
+
gap: 4px;
|
|
1740
|
+
margin-top: 6px;
|
|
1741
|
+
color: #16a34a;
|
|
1742
|
+
font-weight: 600;
|
|
1743
|
+
font-size: 0.85rem;
|
|
1744
|
+
text-decoration: none;
|
|
1745
|
+
border-bottom: 1.5px solid rgba(22, 163, 74, 0.3);
|
|
1746
|
+
transition: border-color 0.2s;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.repro-deque-link:hover {
|
|
1750
|
+
color: #15803d;
|
|
1751
|
+
border-bottom-color: #16a34a;
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1413
1754
|
/* ADO Modal Standardized */
|
|
1414
1755
|
.ado-modal-premium .modal-content {
|
|
1415
1756
|
border-radius: 20px;
|
|
@@ -1513,6 +1854,16 @@ select.ado-form-input {
|
|
|
1513
1854
|
opacity: 0.1;
|
|
1514
1855
|
}
|
|
1515
1856
|
|
|
1857
|
+
.ado-repro-env {
|
|
1858
|
+
font-size: 0.75rem;
|
|
1859
|
+
background: #fffcf0;
|
|
1860
|
+
border-color: #f9f0c3;
|
|
1861
|
+
padding: 12px;
|
|
1862
|
+
line-height: 1.5;
|
|
1863
|
+
border-radius: 12px;
|
|
1864
|
+
border: 1.5px solid #f9f0c3;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1516
1867
|
.screenshot-thumb,
|
|
1517
1868
|
.video-preview-player {
|
|
1518
1869
|
width: 100%;
|
|
@@ -1593,3 +1944,43 @@ select.ado-form-input {
|
|
|
1593
1944
|
color: var(--text-main);
|
|
1594
1945
|
border: 1px solid #f1f5f9;
|
|
1595
1946
|
}
|
|
1947
|
+
|
|
1948
|
+
/* Loader Styles */
|
|
1949
|
+
.loader-overlay {
|
|
1950
|
+
position: fixed;
|
|
1951
|
+
inset: 0;
|
|
1952
|
+
background: #fff;
|
|
1953
|
+
z-index: 10000;
|
|
1954
|
+
display: flex;
|
|
1955
|
+
flex-direction: column;
|
|
1956
|
+
justify-content: center;
|
|
1957
|
+
align-items: center;
|
|
1958
|
+
transition: opacity 0.5s ease;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.loader-pulse {
|
|
1962
|
+
animation: pulseLoader 2s infinite ease-in-out;
|
|
1963
|
+
color: var(--primary);
|
|
1964
|
+
margin-bottom: 16px;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
@keyframes pulseLoader {
|
|
1968
|
+
0%,
|
|
1969
|
+
100% {
|
|
1970
|
+
transform: scale(1.1);
|
|
1971
|
+
opacity: 1;
|
|
1972
|
+
}
|
|
1973
|
+
50% {
|
|
1974
|
+
transform: scale(0.9);
|
|
1975
|
+
opacity: 0.6;
|
|
1976
|
+
}
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
.loader-text {
|
|
1980
|
+
font-family: 'Outfit', sans-serif;
|
|
1981
|
+
font-weight: 600;
|
|
1982
|
+
color: var(--text-muted);
|
|
1983
|
+
letter-spacing: 0.05em;
|
|
1984
|
+
text-transform: uppercase;
|
|
1985
|
+
font-size: 0.85rem;
|
|
1986
|
+
}
|