@obosbbl/grunnmuren-react 2.0.0-canary.6 → 2.0.0-canary.8
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/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12,7 +12,9 @@ const input = cva({
|
|
|
12
12
|
base: [
|
|
13
13
|
'rounded-md px-3 py-2.5 text-sm font-normal leading-6 placeholder-[#727070] outline-none ring-1 ring-black',
|
|
14
14
|
// invalid styles
|
|
15
|
-
'group-data-[invalid]:ring-2 group-data-[invalid]:ring-red'
|
|
15
|
+
'group-data-[invalid]:ring-2 group-data-[invalid]:ring-red',
|
|
16
|
+
// Fix invisible ring on safari: https://github.com/tailwindlabs/tailwindcss.com/issues/1135
|
|
17
|
+
'appearance-none'
|
|
16
18
|
],
|
|
17
19
|
variants: {
|
|
18
20
|
// Focus rings. Can either be :focus or :focus-visible based on the needs of the particular component.
|