@eturnity/eturnity_reusable_components 8.10.3-EPDM-14085.0 → 8.10.3-EPDM-14085.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -98,12 +98,14 @@
|
|
98
98
|
align-items: center;
|
99
99
|
justify-content: space-between;
|
100
100
|
height: fit-content;
|
101
|
+
margin-right: 14px;
|
101
102
|
`
|
102
103
|
|
103
104
|
const LeftIconsContainer = styled.div`
|
104
105
|
display: flex;
|
105
106
|
align-items: center;
|
106
107
|
gap: 4px;
|
108
|
+
margin-right: 14px;
|
107
109
|
`
|
108
110
|
|
109
111
|
const TitleContainer = styled.div`
|
@@ -119,6 +121,9 @@
|
|
119
121
|
line-height: 19.6px;
|
120
122
|
letter-spacing: -1%;
|
121
123
|
color: ${theme.colors.white};
|
124
|
+
word-break: break-word;
|
125
|
+
overflow-wrap: break-word;
|
126
|
+
white-space: normal;
|
122
127
|
`
|
123
128
|
|
124
129
|
const DragHandleWrapper = styled.div`
|
@@ -157,6 +162,9 @@
|
|
157
162
|
padding-right: 16px;
|
158
163
|
padding-bottom: 8px;
|
159
164
|
padding-left: 16px;
|
165
|
+
word-break: break-word;
|
166
|
+
overflow-wrap: break-word;
|
167
|
+
white-space: normal;
|
160
168
|
`
|
161
169
|
|
162
170
|
const FooterContainer = styled.div`
|
@@ -166,6 +174,9 @@
|
|
166
174
|
justify-content: space-between;
|
167
175
|
padding: 8px;
|
168
176
|
background: ${theme.colors.eturnityGrey};
|
177
|
+
word-break: break-word;
|
178
|
+
overflow-wrap: break-word;
|
179
|
+
white-space: normal;
|
169
180
|
`
|
170
181
|
|
171
182
|
export default {
|