Skip to content

Commit

Permalink
Merge pull request #215 from prydonius/fix-appnew-form-padding
Browse files Browse the repository at this point in the history
style: fix deployment form padding
  • Loading branch information
Sameer Naik authored Apr 3, 2018
2 parents 6fd794c + 9d098b5 commit 2203161
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
3 changes: 0 additions & 3 deletions dashboard/src/components/DeploymentForm/DeploymentForm.css

This file was deleted.

4 changes: 1 addition & 3 deletions dashboard/src/components/DeploymentForm/DeploymentForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { RouterAction } from "react-router-redux";
import { IServiceBinding } from "../../shared/ServiceBinding";
import { IChartState, IChartVersion } from "../../shared/types";

import "./DeploymentForm.css";

import "brace/mode/yaml";
import "brace/theme/xcode";

Expand Down Expand Up @@ -132,7 +130,7 @@ class DeploymentForm extends React.Component<IDeploymentFormProps, IDeploymentFo
{this.state.error && (
<div className="container padding-v-bigger bg-action">{this.state.error}</div>
)}
<form className="container" onSubmit={this.handleDeploy}>
<form className="container padding-b-bigger" onSubmit={this.handleDeploy}>
<div className="row">
<div className="col-12">
<h2>{this.props.chartID}</h2>
Expand Down

0 comments on commit 2203161

Please sign in to comment.