diff --git a/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/index.js b/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/index.js index 258486708c..59ab395f20 100644 --- a/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/index.js +++ b/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/index.js @@ -59,6 +59,8 @@ class InputAddonWithErrors extends React.Component { // eslint-disable-line reac const { addon, autoFocus, + className, + customBootstrapClass, deactivateErrorHighlight, disabled, errorsClassName, @@ -91,9 +93,9 @@ class InputAddonWithErrors extends React.Component { // eslint-disable-line reac return (
diff --git a/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/styles.scss b/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/styles.scss index e69de29bb2..0853bdc84d 100644 --- a/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/styles.scss +++ b/packages/strapi-helper-plugin/lib/src/components/InputAddonWithErrors/styles.scss @@ -0,0 +1,9 @@ +.containerAddon { + min-width: 200px; + margin-bottom: 1.5rem; + font-size: 1.3rem; +} + +.spacer { + height: .5rem; +}