From c636f365897b4fca476cdbc7b5330a80b059628d Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Thu, 22 Mar 2018 11:58:15 +0530 Subject: [PATCH] adds bottom padding to the form --- dashboard/src/components/AppNew/AppNew.css | 3 +++ dashboard/src/components/AppNew/AppNew.tsx | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 dashboard/src/components/AppNew/AppNew.css diff --git a/dashboard/src/components/AppNew/AppNew.css b/dashboard/src/components/AppNew/AppNew.css new file mode 100644 index 000000000000..499b52cd1a15 --- /dev/null +++ b/dashboard/src/components/AppNew/AppNew.css @@ -0,0 +1,3 @@ +.container { + padding-bottom: 10px; +} diff --git a/dashboard/src/components/AppNew/AppNew.tsx b/dashboard/src/components/AppNew/AppNew.tsx index acc4f4a9f668..14d3993b76ca 100644 --- a/dashboard/src/components/AppNew/AppNew.tsx +++ b/dashboard/src/components/AppNew/AppNew.tsx @@ -5,6 +5,8 @@ import { RouterAction } from "react-router-redux"; import { IServiceBinding } from "../../shared/ServiceBinding"; import { IChartState, IChartVersion } from "../../shared/types"; +import "./AppNew.css"; + import "brace/mode/yaml"; import "brace/theme/xcode";