@bitrise/bitkit 13.307.0 → 13.308.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "13.307.0",
4
+ "version": "13.308.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -105,6 +105,9 @@ const DialogTheme: ComponentStyleConfig = {
105
105
  paddingLeft: '16',
106
106
  marginRight: '16',
107
107
  },
108
+ closeButton: {
109
+ top: '16',
110
+ },
108
111
  body: {
109
112
  paddingX: '16',
110
113
  },
@@ -14,7 +14,7 @@ const LinkButton = forwardRef<LinkButtonProps, 'div'>((props, ref) => {
14
14
  const styles = useStyleConfig('LinkButton', { size, ...rest });
15
15
 
16
16
  return (
17
- <Box as="button" disabled={isDisabled} ref={ref} _css={styles} {...rest}>
17
+ <Box as="button" disabled={isDisabled} ref={ref} __css={styles} {...rest}>
18
18
  {children}
19
19
  {rightIconName && <Icon name={rightIconName} size="16" />}
20
20
  </Box>