From 3f59d6c1e39e522340240f19890d457f4ffdb6f2 Mon Sep 17 00:00:00 2001 From: Teal Larson Date: Thu, 12 May 2022 10:17:21 -0400 Subject: [PATCH] center align group label in connector form (#12811) --- .../ServiceForm/components/Sections/ConditionSection.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ConditionSection.tsx b/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ConditionSection.tsx index c18507266e2a..384f1feb6d0a 100644 --- a/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ConditionSection.tsx +++ b/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ConditionSection.tsx @@ -16,7 +16,10 @@ import { FormSection } from "./FormSection"; const GroupLabel = styled(Label)` width: auto; margin-right: 8px; + padding-top: 8px; display: inline-block; + padding-bottom: 0px; + vertical-align: middle; `; const ConditionControls = styled.div`