@aurora-ds/components 0.22.2 → 0.22.3
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/cjs/index.js +3 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -1973,6 +1973,7 @@ const BOX_STYLES = theme.createStyles((theme) => ({
|
|
|
1973
1973
|
cursor,
|
|
1974
1974
|
boxShadow: shadow ? theme.shadows[shadow] : undefined,
|
|
1975
1975
|
boxSizing: 'border-box',
|
|
1976
|
+
transition: `background-color ${theme.transition.normal}, border-color ${theme.transition.normal}`,
|
|
1976
1977
|
}),
|
|
1977
1978
|
}));
|
|
1978
1979
|
|
|
@@ -2052,7 +2053,8 @@ const CARD_STYLES = theme.createStyles((theme) => ({
|
|
|
2052
2053
|
alignItems: align,
|
|
2053
2054
|
justifyContent: justify,
|
|
2054
2055
|
boxSizing: 'border-box',
|
|
2055
|
-
flexShrink: 0
|
|
2056
|
+
flexShrink: 0,
|
|
2057
|
+
transition: `background-color ${theme.transition.normal}, border-color ${theme.transition.normal}`,
|
|
2056
2058
|
}),
|
|
2057
2059
|
}));
|
|
2058
2060
|
|