@acorex/styles 6.0.0 → 6.0.1
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 +17 -10
- package/src/components/_popup.scss +6 -10
package/package.json
CHANGED
@@ -1,11 +1,18 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
"
|
10
|
-
|
11
|
-
|
2
|
+
"name": "@acorex/styles",
|
3
|
+
"version": "6.0.1",
|
4
|
+
"description": "",
|
5
|
+
"main": "index.js",
|
6
|
+
"author": "",
|
7
|
+
"license": "ISC",
|
8
|
+
"scripts": {
|
9
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
10
|
+
},
|
11
|
+
"peerDependencies": {
|
12
|
+
"animated-tailwindcss": "^3.3.0",
|
13
|
+
"autoprefixer": "^10.4.7",
|
14
|
+
"postcss": "^8.4.14",
|
15
|
+
"tailwind-rtl-utilities": "^3.0.5",
|
16
|
+
"tailwindcss": "^3.1.3"
|
17
|
+
}
|
18
|
+
}
|
@@ -1,21 +1,17 @@
|
|
1
1
|
@layer components {
|
2
2
|
|
3
3
|
.ax-popup {
|
4
|
-
@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 ax-mx-auto
|
4
|
+
@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 ax-mx-auto;
|
5
5
|
@include control-states("surface");
|
6
|
-
|
7
|
-
|
8
|
-
@apply ax-bg-white ax-p-
|
9
|
-
@include control-states("
|
6
|
+
ax-header,
|
7
|
+
ax-footer {
|
8
|
+
@apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
|
9
|
+
@include control-states("editor");
|
10
10
|
}
|
11
|
-
|
11
|
+
ax-footer
|
12
12
|
{
|
13
13
|
@apply ax-border-t;
|
14
14
|
}
|
15
|
-
.ax-header
|
16
|
-
{
|
17
|
-
@apply ax-border-b;
|
18
|
-
}
|
19
15
|
.ax-popup-main-container {
|
20
16
|
@apply ax-overflow-auto ax-flex-1;
|
21
17
|
}
|