Skip to content

Commit

Permalink
SQUASHME: polish placeholder element
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvogt committed Dec 22, 2024
1 parent c107b6c commit 9bc7016
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ exports[`GitHub Widget matches the loading state snapshot 1`] = `
"height": "15px",
"marginTop": 0,
"maxHeight": undefined,
"width": "250px",
"width": "150px",
}
}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ exports[`Widget/GitHub/LastPullRequest snapshots matches the loading state snaps
"height": "15px",
"marginTop": 0,
"maxHeight": undefined,
"width": "250px",
"width": "150px",
}
}
/>
Expand Down
2 changes: 1 addition & 1 deletion theme/src/components/widgets/github/last-pull-request.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const LastPullRequest = ({ isLoading, pullRequest = {} }) => {
<CardFooter>
<Placeholder
color='#efefef'
customPlaceholder={<TextRow color='#efefef' style={{ marginTop: 0, width: '250px', height: '15px' }} />}
customPlaceholder={<TextRow color='#efefef' style={{ marginTop: 0, width: '150px', height: '15px' }} />}
ready={!isLoading}
showLoadingAnimation
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ exports[`Goodreads Widget matches the loading state snapshot 1`] = `
"height": "15px",
"marginTop": 0,
"maxHeight": undefined,
"width": "250px",
"width": "150px",
}
}
/>
Expand Down
2 changes: 1 addition & 1 deletion theme/src/components/widgets/goodreads/user-status.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const UserStatus = ({ isLoading, status, actorName }) => {
<CardFooter>
<Placeholder
color='#efefef'
customPlaceholder={<TextRow color='#efefef' style={{ marginTop: 0, width: '250px', height: '15px' }} />}
customPlaceholder={<TextRow color='#efefef' style={{ marginTop: 0, width: '150px', height: '15px' }} />}
ready={!isLoading}
showLoadingAnimation
>
Expand Down

0 comments on commit 9bc7016

Please sign in to comment.