Skip to content

Commit

Permalink
update styling to cap the name length and ellipsis the overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dmceachernmsft committed Feb 28, 2025
1 parent cc9df75 commit 13d099b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const LoadingSpinner = (props: { loadingMessage: string }): JSX.Element =
return (
<Stack verticalAlign="center" className={loadingStyle}>
<Spinner
styles={{ label: { maxWidth: '15rem', overflow: 'hidden', textOverflow: 'ellipses' } }}
styles={{ label: { maxWidth: '10rem', overflow: 'hidden', textOverflow: 'ellipsis' } }}
label={props.loadingMessage}
size={SpinnerSize.xSmall}
aria-live={'assertive'}
Expand Down

0 comments on commit 13d099b

Please sign in to comment.