Skip to content

Commit

Permalink
Fix default size
Browse files Browse the repository at this point in the history
  • Loading branch information
grgia committed Apr 11, 2023
1 parent bda1b4c commit 19cfd86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/styles/StyleUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ function getBackgroundColorStyle(backgroundColor) {
}

/**
* Returns a style with the specified backgroundColor
* Returns the width style for the wordmark logo on the sign in page
*
* @param {String} environment
* @param {Boolean} isSmallScreenWidth
Expand All @@ -303,7 +303,7 @@ function getSignInWordmarkWidthStyle(environment, isSmallScreenWidth) {
if (environment === CONST.ENVIRONMENT.PRODUCTION) {
return isSmallScreenWidth ? {width: variables.signInLogoWidth} : {width: variables.signInLogoWidthLargeScreen};
}
return {};
return isSmallScreenWidth ? {width: variables.signInLogoWidthPill} : {width: variables.signInLogoWidthLargeScreenPill};
}

/**
Expand Down

0 comments on commit 19cfd86

Please sign in to comment.