Skip to content

Commit fd6a638

Browse files
committed
Minor fixes.
1 parent baf1442 commit fd6a638

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/button/styled.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export const StyledButton = styled.button.attrs(props => ({
134134
text-decoration: none;
135135
& > span {
136136
${textTransform};
137-
margin-left: ${({ hasIcon }) => (hasIcon ? getSizeBy(1.5) : "0px")};
137+
margin-left: ${({ hasIcon }) => (hasIcon ? "2px" : "0px")};
138138
}
139139
140140
&:hover {

src/components/tableV2/features/useRowSelection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useMemo } from "react"
22
import { Checkbox } from "src/components/checkbox"
33

4-
const width = 45
4+
const width = 30
55

66
export default (enabled, { testPrefix, tableMeta }) =>
77
useMemo(

0 commit comments

Comments
 (0)