@camox/ui 0.11.0 → 0.12.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 +6 -1
- package/src/styles/globals.css +18 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camox/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"files": [
|
|
5
5
|
"src"
|
|
6
6
|
],
|
|
@@ -139,5 +139,10 @@
|
|
|
139
139
|
"peerDependencies": {
|
|
140
140
|
"react": ">=18",
|
|
141
141
|
"react-dom": ">=18"
|
|
142
|
+
},
|
|
143
|
+
"nx": {
|
|
144
|
+
"tags": [
|
|
145
|
+
"type:pkg"
|
|
146
|
+
]
|
|
142
147
|
}
|
|
143
148
|
}
|
package/src/styles/globals.css
CHANGED
|
@@ -115,9 +115,26 @@
|
|
|
115
115
|
* {
|
|
116
116
|
@apply border-border outline-ring/50;
|
|
117
117
|
}
|
|
118
|
+
|
|
118
119
|
body {
|
|
119
|
-
@apply bg-background text-foreground;
|
|
120
|
+
@apply bg-background text-foreground m-0;
|
|
121
|
+
font-family:
|
|
122
|
+
"Lato",
|
|
123
|
+
-apple-system,
|
|
124
|
+
BlinkMacSystemFont,
|
|
125
|
+
"Segoe UI",
|
|
126
|
+
"Roboto",
|
|
127
|
+
"Oxygen",
|
|
128
|
+
"Ubuntu",
|
|
129
|
+
"Cantarell",
|
|
130
|
+
"Fira Sans",
|
|
131
|
+
"Droid Sans",
|
|
132
|
+
"Helvetica Neue",
|
|
133
|
+
sans-serif;
|
|
134
|
+
-webkit-font-smoothing: antialiased;
|
|
135
|
+
-moz-osx-font-smoothing: grayscale;
|
|
120
136
|
}
|
|
137
|
+
|
|
121
138
|
a:focus-visible,
|
|
122
139
|
button:focus-visible {
|
|
123
140
|
@apply outline-ring ring-ring/50 rounded-md ring-3 outline-1 -outline-offset-1;
|