@bitrise/bitkit 13.354.0 → 13.356.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.
- package/package.json +1 -1
- package/src/theme.ts +6 -1
package/package.json
CHANGED
package/src/theme.ts
CHANGED
|
@@ -18,7 +18,9 @@ const theme = {
|
|
|
18
18
|
},
|
|
19
19
|
styles: {
|
|
20
20
|
global: {
|
|
21
|
-
|
|
21
|
+
// Excludes Ark UI / bitkit-v2 parts so the v1 ring doesn't override
|
|
22
|
+
// v2's outline-based focus ring when v2 is mounted under v1's Provider.
|
|
23
|
+
'*:focus-visible:not([data-scope]):not([data-scope] *)': {
|
|
22
24
|
boxShadow: 'outline',
|
|
23
25
|
outline: 'none',
|
|
24
26
|
},
|
|
@@ -37,6 +39,9 @@ const theme = {
|
|
|
37
39
|
'pre, code, kbd, samp': {
|
|
38
40
|
fontFamily: 'mono',
|
|
39
41
|
},
|
|
42
|
+
':where(button, [role="button"])': {
|
|
43
|
+
cursor: 'pointer',
|
|
44
|
+
},
|
|
40
45
|
},
|
|
41
46
|
},
|
|
42
47
|
};
|