From b73b34acd5efe7a8b3632ddaa27070bc403fa1b4 Mon Sep 17 00:00:00 2001 From: Madison Caldwell Date: Thu, 14 Jan 2021 17:43:22 +0000 Subject: [PATCH] Layout, round 1 --- .../rules/threshold_input/index.tsx | 55 +++++++++++-------- 1 file changed, 33 insertions(+), 22 deletions(-) diff --git a/x-pack/plugins/security_solution/public/detections/components/rules/threshold_input/index.tsx b/x-pack/plugins/security_solution/public/detections/components/rules/threshold_input/index.tsx index 81e771ce4dc5..54ce400b7aa4 100644 --- a/x-pack/plugins/security_solution/public/detections/components/rules/threshold_input/index.tsx +++ b/x-pack/plugins/security_solution/public/detections/components/rules/threshold_input/index.tsx @@ -5,7 +5,7 @@ */ import React, { useMemo } from 'react'; -import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; +import { EuiButton, EuiFlexGroup, EuiFlexItem, EuiFormRow, EuiSpacer } from '@elastic/eui'; import styled from 'styled-components'; import { BrowserFields } from '../../../../common/containers/source'; @@ -52,27 +52,38 @@ const ThresholdInputComponent: React.FC = ({ ); return ( - - - - - {'>='} - - - + + + + + + {'>='} + + + + + + + {'Add Aggregation'} + + + {'Specify Cardinality'} + + + ); };