@@ -130,4 +130,9 @@
margin-bottom: 18px;
overflow: hidden;
}
+
+ .text-break {
+ word-break: break-word;
+ overflow-wrap: break-word;
+ }
@@ -46,7 +46,7 @@ const PagePathHierarchicalLink = (props) => {
const RootElm = ({ children }) => {
return props.isInnerElem
? <>{children}</>
- : <span className="grw-page-path-hierarchical-link">{children}</span>;
+ : <span className="grw-page-path-hierarchical-link text-break">{children}</span>;
};
return (