Skip to content

Commit fbca8e1

Browse files
committed
fix: minor fixes on styles
1 parent 2b8b561 commit fbca8e1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/components/Button/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ const CSS_COLOR_PROPERTIES: CSSColorPropertiesType = {
6464
default: {
6565
color: colorWhite,
6666
background: colorBrand1,
67-
border: false,
67+
border: colorBrand1,
6868
hoverColor: colorWhite,
6969
hoverBackground: colorHoverDark,
70-
hoverBorder: false,
70+
hoverBorder: colorHoverDark,
7171
outline: colorBrand1,
7272
},
7373
danger: {

src/components/Button/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ const commonButtonStyles = css<StyledButtonProps>`
6666
${hoverBorder ? `border: 1px solid ${hoverBorder};` : 'border: none;'}
6767
}
6868
&&:focus {
69+
border: 1px solid transparent;
6970
outline: 2px solid ${outline};
7071
}
7172
`;

src/components/Navigation/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const NavigationButton = styled.button`
2222
export const IconTextWrapper = styled.div`
2323
display: flex;
2424
flex-direction: row;
25-
align-items: flex-start;
25+
align-items: center;
2626
justify-content: center;
2727
gap: ${spacingMedium};
2828
`;

0 commit comments

Comments
 (0)