Bläddra i källkod

Break notification item name if it doesn't fit

If the notification item's name is too long, break it on the next line,
so it doesn't overflow the items list.
Sergiu Miclea 6 år sedan
förälder
incheckning
c7ce6eb784

+ 1 - 1
src/components/molecules/NotificationDropdown/NotificationDropdown.jsx

@@ -148,7 +148,7 @@ export const ItemReplicaBadge = styled.div`
   border: 1px solid #7F8795;
   border: 1px solid #7F8795;
 `
 `
 export const ItemTitle = styled.div`
 export const ItemTitle = styled.div`
-  ${props => props.nowrap ? 'white-space: nowrap;' : ''}
+  ${props => props.nowrap ? 'white-space: nowrap;' : 'word-break: break-word;'}
   overflow: hidden;
   overflow: hidden;
   text-overflow: ellipsis;
   text-overflow: ellipsis;
 `
 `