Merge pull request #5688 from urbit/po/fix-url-wrapping-in-notes

groups: fix issue with wrapping urls in notes
This commit is contained in:
Patrick O'Sullivan 2022-04-01 15:02:37 -05:00 committed by GitHub
commit f194d863c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,7 @@ import { Text } from '@tlon/indigo-react';
import styled from 'styled-components';
export const TruncatedText = styled(Text)`
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
min-width: 0;
overflow-wrap: anywhere;
`;