@acorex/styles 5.0.34 → 5.0.35

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.0.34",
3
+ "version": "5.0.35",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- .ax-form-field {
2
+ ax-form-field {
3
3
  @apply ax-mb-2 ax-relative;
4
4
  .ax-error-msg {
5
5
  @apply ax-absolute ax--bottom-5 ax-text-danger-500 ax-text-xs;
@@ -13,9 +13,7 @@
13
13
  }
14
14
 
15
15
  .ax-popup {
16
- max-height: 98vh;
17
- min-height: fit-content;
18
- @apply ax-flex ax-flex-col ax-bg-white ax-w-6/12 ax-shadow-lg ax-border ax-border-solid ax-border-light-300 ax-rounded ax-outline-none ax-p-0;
16
+ @apply ax-flex ax-flex-col ax-bg-white ax-w-6/12 ax-shadow-lg ax-border ax-border-solid ax-border-light-300 ax-rounded ax-outline-none ax-p-0 ax-max-h-[98vh] ax-min-h-fit;
19
17
  @include control-dark('surface');
20
18
 
21
19
  header {
@@ -46,7 +44,7 @@
46
44
  }
47
45
 
48
46
  &.ax-popup-full {
49
- @apply ax-w-screen ax-h-screen;
47
+ @apply ax-w-screen ax-h-screen ax-max-h-screen;
50
48
  }
51
49
 
52
50
  &.ax-fit {
@@ -100,6 +98,7 @@
100
98
  @media all and (min-width: 425px) and (max-width: 767px) {
101
99
  &.ax-popup-sm {
102
100
  width: 100vw;
101
+ height: 100vh;
103
102
  max-height: 100vh;
104
103
  }
105
104
 
@@ -115,6 +114,7 @@
115
114
  &.ax-popup-md,
116
115
  &.ax-popup-lg {
117
116
  width: 100vw;
117
+ height: 100vh;
118
118
  max-height: 100vh;
119
119
  }
120
120
  }
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- .ax-select-box {
2
+ ax-select-box {
3
3
  .ax-select-box-selection {
4
4
  @apply ax-flex ax-justify-center ax-items-center ax-outline-none;
5
5