Skip to content

Commit

Permalink
fix: word wrap in SendActivity (#2908)
Browse files Browse the repository at this point in the history
* update word-break css

* use non-deprecated CSS

Co-authored-by: Andy Brown <asbrown002@gmail.com>
Co-authored-by: Ben Yackley <61990921+beyackle@users.noreply.github.com>
Co-authored-by: Chris Whitten <christopher.whitten@microsoft.com>
  • Loading branch information
4 people authored May 6, 2020
1 parent 558372f commit 52a54a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Composer/packages/lib/ui-shared/src/styled/sharedCSS.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export const TruncatedCSS = css`

export const MultilineCSS = css`
white-space: initial;
overflow-wrap: break-word;
word-break: break-all;
overflow-wrap: anywhere;
word-break: normal;
`;

export const ColorlessFontCSS = css`
Expand Down
2 changes: 1 addition & 1 deletion Composer/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12812,7 +12812,7 @@ minimatch@3.0.4, minimatch@^3.0.3, minimatch@^3.0.4:
dependencies:
brace-expansion "^1.1.7"

minimist@1.2.5, minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.2, minimist@^1.2.5:
minimist@1.2.5, minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5:
version "1.2.5"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
Expand Down

0 comments on commit 52a54a4

Please sign in to comment.