File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/modules/service-catalog/components/service-catalog-item Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ const DescriptionWrapper = styled.div`
13
13
${ ( props ) => getColorV8 ( "grey" , 300 , props . theme ) } ;
14
14
padding-bottom: ${ ( props ) => props . theme . space . lg } ;
15
15
margin-inline-end: ${ ( props ) => props . theme . space . xl } ;
16
- word-break: break-all;
17
16
18
17
@media (max-width: ${ ( props ) => props . theme . breakpoints . md } ) {
19
18
margin-inline-end: 0;
@@ -23,6 +22,8 @@ const DescriptionWrapper = styled.div`
23
22
const ItemTitle = styled ( XXXL ) `
24
23
font-weight: ${ ( props ) => props . theme . fontWeights . semibold } ;
25
24
margin-bottom: 0;
25
+ overflow-wrap: break-word;
26
+ max-width: 100%;
26
27
` ;
27
28
28
29
const CollapsibleText = styled . div < { isCollapsed : boolean } > `
@@ -33,6 +34,7 @@ const CollapsibleText = styled.div<{ isCollapsed: boolean }>`
33
34
overflow: hidden;
34
35
margin-top: ${ ( props ) => props . theme . space . md } ;
35
36
padding-inline-end: ${ ( props ) => props . theme . space . xl } ;
37
+ overflow-wrap: break-word;
36
38
37
39
@media (max-width: ${ ( props ) => props . theme . breakpoints . md } ) {
38
40
padding-inline-end: 0;
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ const LeftColumn = styled.div`
72
72
flex-direction: column;
73
73
gap: ${ ( props ) => props . theme . space . lg } ;
74
74
margin-inline-end: ${ ( props ) => props . theme . space . xl } ;
75
+ min-width: 0;
75
76
76
77
@media (max-width: ${ ( props ) => props . theme . breakpoints . md } ) {
77
78
margin-inline-end: 0;
You can’t perform that action at this time.
0 commit comments