@acorex/styles 5.4.0 → 5.5.0

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": "5.4.0",
3
+ "version": "5.5.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,18 +1,28 @@
1
1
  @layer components {
2
- ax-color-picker{
3
- .ax-dropdown-content{
2
+ ax-color-picker {
3
+ .ax-dropdown-content {
4
4
  @apply ax-mx-2 ax-flex ax-items-center;
5
- .color-badge{
5
+
6
+ .color-badge {
6
7
  @apply ax-block ax-rounded ax-me-2 ax-shadow-sm ax-border ax-border-light-200 dark:ax-border-white/[0.06];
7
8
  width: calc(var(--ax-base-size) * var(--ax-base-ratio) / 2);
8
9
  height: calc(var(--ax-base-size) * var(--ax-base-ratio) / 2);
9
10
  }
10
11
  }
11
12
  }
13
+
12
14
  .ax-overlay-pane {
13
15
  ax-color-palette {
14
16
  @apply ax-border-none;
17
+
18
+ @include screen(mobile) {
19
+ @apply ax-w-full;
20
+ .palette-items {
21
+ @apply ax-max-h-[30vh] #{!important};
22
+ }
23
+ }
24
+
15
25
  }
16
-
26
+
17
27
  }
18
- }
28
+ }