@acorex/styles 6.1.9 → 6.1.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "6.1.9",
3
+ "version": "6.1.10",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "",
@@ -1,27 +1,29 @@
1
1
  @layer components {
2
2
  .ax-breadcrumbs {
3
- @apply ax-inline-flex ax-items-center ax-space-x-1 md:ax-space-x-3;
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 dark:ax-text-light-400 ax-cursor-pointer ax-select-none;
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-ps-2;
12
+ @apply ax-pe-2;
15
13
  }
16
14
  .ax-breadcrumb-divider {
17
- @apply dark:ax-text-white/30;
15
+ @apply dark:ax-text-white/30;
16
+ }
17
+ &:last-child {
18
+ .ax-breadcrumb-divider {
19
+ @apply ax-hidden;
20
+ }
18
21
  }
19
- &:last-child{
20
- .ax-breadcrumb-divider{
21
- @apply ax-hidden
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
  }