@ansiversa/components 0.0.37 → 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 +20 -1
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -225,12 +225,31 @@
|
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
.av-faq-question {
|
|
228
|
-
flex: 1;
|
|
228
|
+
flex: 1 1 auto;
|
|
229
229
|
font-weight: 700;
|
|
230
230
|
font-size: 1.05rem;
|
|
231
231
|
line-height: 1.4;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
+
.av-faq-actions {
|
|
235
|
+
display: flex;
|
|
236
|
+
gap: 0.5rem;
|
|
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
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
234
253
|
.av-page {
|
|
235
254
|
@apply min-h-screen flex flex-col;
|
|
236
255
|
}
|