@eturnity/eturnity_reusable_components 7.35.1-EPDM-10620.2 → 7.35.1-EPDM-10620.4
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
@@ -138,6 +138,8 @@
|
|
138
138
|
position: fixed;
|
139
139
|
bottom: 30px;
|
140
140
|
left: 50%;
|
141
|
+
width: auto;
|
142
|
+
max-width: 70%;
|
141
143
|
transform: translateX(-50%);
|
142
144
|
`
|
143
145
|
|
@@ -163,6 +165,7 @@
|
|
163
165
|
align-items: center;
|
164
166
|
height: 100%;
|
165
167
|
padding-right: 20px;
|
168
|
+
white-space: nowrap;
|
166
169
|
border-right: 1px solid rgba(255, 255, 255, 0.2);
|
167
170
|
`
|
168
171
|
|
@@ -233,7 +236,9 @@
|
|
233
236
|
disabled: Boolean,
|
234
237
|
hoverColor: String,
|
235
238
|
}
|
239
|
+
|
236
240
|
const ListItem = styled('div', ListAttrs)`
|
241
|
+
width: max-content;
|
237
242
|
cursor: ${(props) => (props.disabled ? 'not-allowed' : 'pointer')};
|
238
243
|
color: ${(props) => props.disabled && props.theme.colors.grey3};
|
239
244
|
|