We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33993f2 commit 9134b28Copy full SHA for 9134b28
app/javascript/src/components/Select.jsx
@@ -14,7 +14,8 @@ export default Select = ({
14
...props
15
}) => {
16
const labelClassNames = `${required ? 'required' : ''} ${labelClassName || ''}`
17
- const selectClassNames = `form-control ${className || ''} ${labelClassNames.includes('sr-only') ? 'mt-6' : ''}`
+
18
+ const selectClassNames = `form-control ${className || ''} ${labelClassNames.includes('sr-only') ? 'mt-4' : ''}`
19
20
const selectedValue = !!value || value === 0 ? value : ""
21
if (!!onChange) {
0 commit comments