@ansiversa/components 0.0.38 → 0.0.39
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/package.json +1 -1
- package/src/styles/global.css +15 -5
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -203,7 +203,6 @@
|
|
|
203
203
|
gap: var(--av-space-sm);
|
|
204
204
|
cursor: pointer;
|
|
205
205
|
list-style: none;
|
|
206
|
-
flex-wrap: wrap;
|
|
207
206
|
}
|
|
208
207
|
|
|
209
208
|
/* Remove default arrow */
|
|
@@ -226,18 +225,29 @@
|
|
|
226
225
|
}
|
|
227
226
|
|
|
228
227
|
.av-faq-question {
|
|
229
|
-
flex: 1 1
|
|
228
|
+
flex: 1 1 auto;
|
|
230
229
|
font-weight: 700;
|
|
231
230
|
font-size: 1.05rem;
|
|
232
231
|
line-height: 1.4;
|
|
233
232
|
}
|
|
234
233
|
|
|
235
234
|
.av-faq-actions {
|
|
236
|
-
flex: 1 1 100%;
|
|
237
235
|
display: flex;
|
|
238
236
|
gap: 0.5rem;
|
|
239
|
-
|
|
240
|
-
|
|
237
|
+
align-items: center;
|
|
238
|
+
flex: 0 0 auto;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
@media (max-width: 640px) {
|
|
242
|
+
.av-faq-summary {
|
|
243
|
+
flex-wrap: wrap;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.av-faq-actions {
|
|
247
|
+
flex: 1 1 100%;
|
|
248
|
+
justify-content: flex-end;
|
|
249
|
+
margin-top: 0.25rem;
|
|
250
|
+
}
|
|
241
251
|
}
|
|
242
252
|
|
|
243
253
|
.av-page {
|