Skip to content

Commit

Permalink
remove custom css per review
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant committed Mar 23, 2020
1 parent 29ee51c commit 2b162e8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/

import React from 'react';
import './form_drilldown_wizard.scss';
import { EuiFieldText, EuiForm, EuiFormRow, EuiSpacer } from '@elastic/eui';
import { txtDrilldownAction, txtNameOfDrilldown, txtUntitledDrilldown } from './i18n';
import {
Expand Down Expand Up @@ -40,7 +39,7 @@ export const FormDrilldownWizard: React.FC<FormDrilldownWizardProps> = ({
actionFactoryContext,
}) => {
const nameFragment = (
<EuiFormRow label={txtNameOfDrilldown} className="drdFormDrilldownWizard__formRow">
<EuiFormRow label={txtNameOfDrilldown}>
<EuiFieldText
name="drilldown_name"
placeholder={txtUntitledDrilldown}
Expand All @@ -56,7 +55,6 @@ export const FormDrilldownWizard: React.FC<FormDrilldownWizardProps> = ({
<EuiFormRow
label={actionFactories?.length > 1 ? txtDrilldownAction : undefined}
fullWidth={true}
className="drdFormDrilldownWizard__formRow"
>
<ActionWizard
actionFactories={actionFactories}
Expand Down

0 comments on commit 2b162e8

Please sign in to comment.