diff --git a/frontend/src/Components/FieldSet.css b/frontend/src/Components/FieldSet.css
index daf3bdf2e..6da64f0e0 100644
--- a/frontend/src/Components/FieldSet.css
+++ b/frontend/src/Components/FieldSet.css
@@ -16,4 +16,9 @@
color: #3a3f51;
font-size: 21px;
line-height: inherit;
+
+ &.small {
+ color: #909293;
+ font-size: 18px;
+ }
}
diff --git a/frontend/src/Components/FieldSet.js b/frontend/src/Components/FieldSet.js
index 76e68a934..8243fd00c 100644
--- a/frontend/src/Components/FieldSet.js
+++ b/frontend/src/Components/FieldSet.js
@@ -1,5 +1,7 @@
+import classNames from 'classnames';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
+import { sizes } from 'Helpers/Props';
import styles from './FieldSet.css';
class FieldSet extends Component {
@@ -9,13 +11,14 @@ class FieldSet extends Component {
render() {
const {
+ size,
legend,
children
} = this.props;
return (