Skip to content

Commit

Permalink
ta - refactoring out too-explicit CSS. Will handle in consuming apps
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyAlford committed Apr 12, 2017
1 parent 15bc960 commit 37c4b05
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
4 changes: 1 addition & 3 deletions src/components/CreditCardForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import {
import { addressPropType } from './AddressInput';
import { creditCardPropTypes } from './CreditCardInput';

import STYLES from './CreditCardForm.scss';

const TRACKED_PROPS = [
'cardHolderName',
'cardNumber', 'cardCVV', 'expirationMonth', 'expirationYear',
Expand Down Expand Up @@ -108,7 +106,7 @@ export default class CreditCardForm extends Component {
);

return (
<div className={`credit-card-form ${STYLES.creditCardForm}`} onBlur={this.handleBlur}>
<div className="credit-card-form" onBlur={this.handleBlur}>
<Row>
<Col xs={12}>
<ValidatedFormGroup label="Cardholder Name" error={errors.cardHolderName}>
Expand Down
10 changes: 0 additions & 10 deletions src/components/CreditCardForm.scss

This file was deleted.

4 changes: 0 additions & 4 deletions src/components/Select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
padding-left: 5px;
}

.has-danger .Select-control {
border-color: #d9534f;
}

.Select-input > input {
height: 100%;
}
Expand Down

0 comments on commit 37c4b05

Please sign in to comment.