Skip to content

Commit 05a22d9

Browse files
committed
Fix tab button
1 parent b58d3bd commit 05a22d9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jderobot-ide-interface",
3-
"version": "0.1.26",
3+
"version": "0.1.27",
44
"main": "dist/main.js",
55
"typings": "dist/index.d.ts",
66
"files": [

src/components/Button/Button.styles.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const handleVariant = (p: StyledButtonProps) => {
2626
case "tab":
2727
return `
2828
background-color: transparent;
29-
width: 48px;
29+
width: 48px !important;
3030
`;
3131
}
3232
};
@@ -90,10 +90,10 @@ export const StyledButton = styled.button<StyledButtonProps>`
9090
}
9191
}
9292
93+
${handleLabel}
9394
${handleVariant}
9495
${handleActive}
9596
${handleIcon}
96-
${handleLabel}
9797
9898
& svg {
9999
width: 20px;

0 commit comments

Comments
 (0)