We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf1442 commit fd6a638Copy full SHA for fd6a638
src/components/button/styled.js
@@ -134,7 +134,7 @@ export const StyledButton = styled.button.attrs(props => ({
134
text-decoration: none;
135
& > span {
136
${textTransform};
137
- margin-left: ${({ hasIcon }) => (hasIcon ? getSizeBy(1.5) : "0px")};
+ margin-left: ${({ hasIcon }) => (hasIcon ? "2px" : "0px")};
138
}
139
140
&:hover {
src/components/tableV2/features/useRowSelection.js
@@ -1,7 +1,7 @@
1
import React, { useMemo } from "react"
2
import { Checkbox } from "src/components/checkbox"
3
4
-const width = 45
+const width = 30
5
6
export default (enabled, { testPrefix, tableMeta }) =>
7
useMemo(
0 commit comments