File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff 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 : {
Original file line number Diff line number Diff 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 ` ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const NavigationButton = styled.button`
2222export 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` ;
You can’t perform that action at this time.
0 commit comments