forstok-ui-lib 8.3.0 → 8.3.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
|
@@ -163,6 +163,9 @@ const SelectAllComponent = (props: TSelect) => {
|
|
|
163
163
|
wordBreak: 'break-all',
|
|
164
164
|
fontWeight: state.isSelected ? 500 : 'normal',
|
|
165
165
|
position: 'relative',
|
|
166
|
+
'&:last-child': {
|
|
167
|
+
marginBottom: 0,
|
|
168
|
+
},
|
|
166
169
|
'&:hover': {
|
|
167
170
|
backgroundColor: 'var(--nav-clr-bg__hvr)',
|
|
168
171
|
},
|
|
@@ -192,6 +192,9 @@ const SelectAsyncPaginateComponent = ({ loadOptions, ...props }: TSelect) => {
|
|
|
192
192
|
wordBreak: 'break-all',
|
|
193
193
|
fontWeight: state.isSelected ? 500 : 'normal',
|
|
194
194
|
position: 'relative',
|
|
195
|
+
'&:last-child': {
|
|
196
|
+
marginBottom: 0,
|
|
197
|
+
},
|
|
195
198
|
'&:hover': {
|
|
196
199
|
backgroundColor: 'var(--nav-clr-bg__hvr)',
|
|
197
200
|
},
|
|
@@ -259,6 +259,9 @@ const SelectComponent = ({ type, isError=false, mode, customOption, customLabel,
|
|
|
259
259
|
wordBreak: 'break-all',
|
|
260
260
|
fontWeight: state.isSelected ? 500 : 'normal',
|
|
261
261
|
position: 'relative',
|
|
262
|
+
'&:last-child': {
|
|
263
|
+
marginBottom: 0,
|
|
264
|
+
},
|
|
262
265
|
'&:hover': {
|
|
263
266
|
backgroundColor: 'var(--nav-clr-bg__hvr)',
|
|
264
267
|
}
|