@fea-ui/styles 0.1.0-alpha.3 → 0.1.0-alpha.4

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": "@fea-ui/styles",
3
- "version": "0.1.0-alpha.3",
3
+ "version": "0.1.0-alpha.4",
4
4
  "description": "FeaUI Styles - Tailwind CSS styles for FeaUI components",
5
5
  "keywords": [
6
6
  "fea-ui",
@@ -11,7 +11,7 @@
11
11
  "styles",
12
12
  "react"
13
13
  ],
14
- "homepage": "https://feaui.aydinthefirst.com",
14
+ "homepage": "https://ui.aydinthefirst.com",
15
15
  "bugs": {
16
16
  "url": "https://github.com/aydinthefirst/fea-ui/issues"
17
17
  },
@@ -0,0 +1,9 @@
1
+ .fieldset {
2
+ @apply flex w-full max-w-md flex-col gap-1;
3
+ }
4
+
5
+ .fieldset__legend {
6
+ @apply border-b pb-4;
7
+
8
+ @apply text-lg font-semibold;
9
+ }
@@ -25,3 +25,4 @@
25
25
  @import "./table.css";
26
26
  @import "./dialog.css";
27
27
  @import "./alert-dialog.css";
28
+ @import "./fieldset.css";