@ansiversa/components 0.0.36 → 0.0.38
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 +13 -1
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -203,6 +203,7 @@
|
|
|
203
203
|
gap: var(--av-space-sm);
|
|
204
204
|
cursor: pointer;
|
|
205
205
|
list-style: none;
|
|
206
|
+
flex-wrap: wrap;
|
|
206
207
|
}
|
|
207
208
|
|
|
208
209
|
/* Remove default arrow */
|
|
@@ -213,6 +214,9 @@
|
|
|
213
214
|
/* Optional arrow icon */
|
|
214
215
|
.av-faq-summary::before {
|
|
215
216
|
content: "›";
|
|
217
|
+
font-size: 1.1rem;
|
|
218
|
+
line-height: 1;
|
|
219
|
+
margin-right: var(--av-space-xs);
|
|
216
220
|
transform: rotate(0deg);
|
|
217
221
|
transition: transform 0.2s ease;
|
|
218
222
|
}
|
|
@@ -222,12 +226,20 @@
|
|
|
222
226
|
}
|
|
223
227
|
|
|
224
228
|
.av-faq-question {
|
|
225
|
-
flex: 1;
|
|
229
|
+
flex: 1 1 240px;
|
|
226
230
|
font-weight: 700;
|
|
227
231
|
font-size: 1.05rem;
|
|
228
232
|
line-height: 1.4;
|
|
229
233
|
}
|
|
230
234
|
|
|
235
|
+
.av-faq-actions {
|
|
236
|
+
flex: 1 1 100%;
|
|
237
|
+
display: flex;
|
|
238
|
+
gap: 0.5rem;
|
|
239
|
+
flex-wrap: wrap;
|
|
240
|
+
justify-content: flex-start;
|
|
241
|
+
}
|
|
242
|
+
|
|
231
243
|
.av-page {
|
|
232
244
|
@apply min-h-screen flex flex-col;
|
|
233
245
|
}
|