@acorex/styles 21.1.0-next.2 → 22.0.0-next.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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
@layer base {
|
|
4
4
|
.ax-editor-container {
|
|
5
|
-
@apply rounded-default
|
|
5
|
+
@apply rounded-default h-default min-h-default relative flex items-center justify-between overflow-hidden px-3 py-3 text-sm leading-5;
|
|
6
6
|
|
|
7
7
|
.ax-content {
|
|
8
8
|
@apply text-sm;
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
&.ax-state-error {
|
|
30
30
|
@apply border-danger-600!;
|
|
31
31
|
&:focus-within {
|
|
32
|
-
@apply outline-2 outline-offset-0
|
|
32
|
+
@apply outline-danger-light outline-2 outline-offset-0;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
ax-prefix,
|
|
47
47
|
ax-suffix {
|
|
48
|
-
@apply flex items-center self-stretch
|
|
48
|
+
@apply flex items-center gap-2 self-stretch;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
ax-prefix:has(> ax-button),
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
|
|
78
78
|
ax-prefix > ax-button,
|
|
79
79
|
ax-suffix > ax-button {
|
|
80
|
-
@apply self-stretch
|
|
80
|
+
@apply shrink-0 self-stretch rounded-none!;
|
|
81
81
|
|
|
82
82
|
> button {
|
|
83
83
|
@apply h-full min-h-0 rounded-[inherit]!;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
.ax-general-button-icon {
|
|
6
6
|
@apply rounded-default inline-flex cursor-pointer items-center justify-center transition select-none;
|
|
7
7
|
@apply disabled:cursor-not-allowed disabled:opacity-50;
|
|
8
|
-
@apply text-
|
|
8
|
+
@apply text-muted hover:text-text-default/70;
|
|
9
9
|
@apply hover:bg-bg-default/10;
|
|
10
10
|
&:focus-visible {
|
|
11
11
|
@apply ax-focus-ring;
|
package/package.json
CHANGED