fixed ellipsis for calendar events (#9823)
Fixed Missing ellipsis for long calendar event names #5267 introducing width for the title Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@ -70,7 +70,10 @@ const StyledTime = styled.div`
|
||||
|
||||
const StyledTitle = styled.div<{ active: boolean; canceled: boolean }>`
|
||||
flex: 1 0 auto;
|
||||
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
width: ${({ theme }) => theme.spacing(10)};
|
||||
${({ theme, active }) =>
|
||||
active &&
|
||||
css`
|
||||
|
||||
Reference in New Issue
Block a user