@archerjessop/utilities 4.3.0 → 4.4.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.
@@ -11,7 +11,7 @@
11
11
  z-index: var(--z-footer);
12
12
  padding: var(--spacing-xl) var(--spacing-xxxl);
13
13
  font-family: var(--font-family-system);
14
- font-size: var(--spacing-xl);
14
+ font-size: var(--font-size-lg);
15
15
  color: var(--text-primary);
16
16
  width: 100%;
17
17
  box-sizing: border-box;
@@ -133,7 +133,7 @@
133
133
 
134
134
  .metric-value {
135
135
  font-weight: var(--font-weight-semibold);
136
- font-size: var(--spacing-xl);
136
+ font-size: var(--font-size-lg);
137
137
  white-space: nowrap;
138
138
  overflow: hidden;
139
139
  text-overflow: ellipsis;
@@ -171,4 +171,51 @@
171
171
  @keyframes pulse {
172
172
  0%, 100% { opacity: 0.3; }
173
173
  50% { opacity: 1; }
174
+ }
175
+
176
+ /* ===== RESPONSIVE DESIGN ===== */
177
+
178
+ @media (max-width: 1400px) {
179
+ .metrics-grid {
180
+ grid-template-columns: repeat(6, 1fr);
181
+ }
182
+
183
+ .btn-primary {
184
+ padding: 10px var(--spacing-xl);
185
+ font-size: var(--font-size-base);
186
+ }
187
+ }
188
+
189
+ @media (max-width: 1000px) {
190
+ .metrics-grid {
191
+ grid-template-columns: repeat(4, 1fr);
192
+ }
193
+ }
194
+
195
+ @media (max-width: 768px) {
196
+ .ext-footer {
197
+ padding: var(--spacing-lg) var(--spacing-xl);
198
+ }
199
+
200
+ .footer-container {
201
+ flex-direction: column;
202
+ gap: var(--spacing-lg);
203
+ }
204
+
205
+ .footer-controls {
206
+ align-items: stretch;
207
+ }
208
+
209
+ .metrics-grid {
210
+ grid-template-columns: repeat(2, 1fr);
211
+ gap: var(--grid-gap-small);
212
+ }
213
+
214
+ .metric-value {
215
+ font-size: var(--font-size-md);
216
+ }
217
+
218
+ .btn-primary {
219
+ justify-content: center;
220
+ }
174
221
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@archerjessop/utilities",
3
- "version": "4.3.0",
3
+ "version": "4.4.0",
4
4
  "description": "Shared utilities for ArcherJessop property analysis tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",