diff --git a/frontend/src/component/common/common.scss b/frontend/src/component/common/common.scss index 497ff9ae73..862b5355a0 100644 --- a/frontend/src/component/common/common.scss +++ b/frontend/src/component/common/common.scss @@ -56,6 +56,8 @@ } .switchWithLabel { + display: flex; + .label { padding-right: 16px; line-height: 24px; diff --git a/frontend/src/component/feature/view-component.jsx b/frontend/src/component/feature/view-component.jsx index 9a9504bace..054f25ccc1 100644 --- a/frontend/src/component/feature/view-component.jsx +++ b/frontend/src/component/feature/view-component.jsx @@ -92,10 +92,12 @@ export default class ViewFeatureToggleComponent extends React.Component { {featureToggle.name} {featureToggle.description} - - toggleFeature(featureToggle.name)}> - {featureToggle.enabled ? 'Enabled' : 'Disabled'} - + + + toggleFeature(featureToggle.name)}> + {featureToggle.enabled ? 'Enabled' : 'Disabled'} + +