@acorex/styles 6.1.9 → 6.1.12
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/components/_breadcrumbs.scss +13 -11
package/package.json
CHANGED
@@ -1,27 +1,29 @@
|
|
1
1
|
@layer components {
|
2
2
|
.ax-breadcrumbs {
|
3
|
-
@apply ax-inline-flex ax-items-center ax-
|
3
|
+
@apply ax-inline-flex ax-items-center ax-me-1 md:ax-me-3;
|
4
4
|
ax-breadcrumbs-item,
|
5
5
|
.ax-breadcrumbs-item {
|
6
|
-
@apply ax-inline-flex ax-items-center ax-text-sm ax-font-medium ax-text-light-500
|
6
|
+
@apply ax-inline-flex ax-items-center ax-text-sm ax-font-medium ax-text-light-500 dark:ax-text-light-400 ax-cursor-pointer ax-select-none;
|
7
7
|
.ax-breadcrumbs-item-text {
|
8
8
|
@apply ax-pe-2 hover:ax-text-light-900 dark:hover:ax-text-white;
|
9
9
|
}
|
10
|
-
.ax-prefix
|
11
|
-
@apply ax-pe-2;
|
12
|
-
}
|
10
|
+
.ax-prefix,
|
13
11
|
.ax-suffix {
|
14
|
-
@apply ax-
|
12
|
+
@apply ax-pe-2;
|
15
13
|
}
|
16
14
|
.ax-breadcrumb-divider {
|
17
|
-
@apply
|
15
|
+
@apply dark:ax-text-white/30;
|
16
|
+
}
|
17
|
+
&:last-child {
|
18
|
+
.ax-breadcrumb-divider {
|
19
|
+
@apply ax-hidden;
|
20
|
+
}
|
18
21
|
}
|
19
|
-
&:
|
20
|
-
.ax-
|
21
|
-
@apply ax-
|
22
|
+
&:not(&:first-child) {
|
23
|
+
.ax-breadcrumbs-item-text {
|
24
|
+
@apply ax-ps-2;
|
22
25
|
}
|
23
26
|
}
|
24
27
|
}
|
25
|
-
|
26
28
|
}
|
27
29
|
}
|