@ansiversa/components 0.0.59 → 0.0.61
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/AvBreadcrumb.astro +2 -3
- package/src/styles/global.css +3 -2
package/package.json
CHANGED
package/src/AvBreadcrumb.astro
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
import AvButton from "./AvButton.astro";
|
|
3
|
-
import AvContainer from "./AvContainer.astro";
|
|
4
3
|
|
|
5
4
|
interface Crumb {
|
|
6
5
|
label: string;
|
|
@@ -25,7 +24,7 @@ const rootClassAttr = rootClasses.join(" ");
|
|
|
25
24
|
---
|
|
26
25
|
|
|
27
26
|
<nav class={rootClassAttr} aria-label="Breadcrumb" {...attrs}>
|
|
28
|
-
<
|
|
27
|
+
<div class="av-breadcrumb__container">
|
|
29
28
|
<ol class="av-breadcrumb__list">
|
|
30
29
|
{items.map((item, index) => {
|
|
31
30
|
const isLast = index === items.length - 1;
|
|
@@ -59,7 +58,7 @@ const rootClassAttr = rootClasses.join(" ");
|
|
|
59
58
|
);
|
|
60
59
|
})}
|
|
61
60
|
</ol>
|
|
62
|
-
</
|
|
61
|
+
</div>
|
|
63
62
|
</nav>
|
|
64
63
|
|
|
65
64
|
<style>
|
package/src/styles/global.css
CHANGED
|
@@ -295,6 +295,7 @@
|
|
|
295
295
|
.av-faq-admin__crumbwrap {
|
|
296
296
|
display: grid;
|
|
297
297
|
gap: 0.25rem;
|
|
298
|
+
padding-top: 0.25rem;
|
|
298
299
|
}
|
|
299
300
|
|
|
300
301
|
.av-faq-admin__count {
|
|
@@ -302,7 +303,7 @@
|
|
|
302
303
|
font-size: 0.875rem;
|
|
303
304
|
}
|
|
304
305
|
|
|
305
|
-
.av-faq-admin__section .av-container {
|
|
306
|
+
.av-faq-admin__section > .av-container {
|
|
306
307
|
padding-top: 0;
|
|
307
308
|
padding-bottom: 0;
|
|
308
309
|
}
|
|
@@ -492,7 +493,7 @@
|
|
|
492
493
|
@apply border-t-0;
|
|
493
494
|
}
|
|
494
495
|
|
|
495
|
-
.av-section .av-container {
|
|
496
|
+
.av-section > .av-container {
|
|
496
497
|
@apply py-10 md:py-14;
|
|
497
498
|
}
|
|
498
499
|
|