Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
PR Grumbles
Browse files Browse the repository at this point in the history
  • Loading branch information
ngotchac committed Jan 12, 2017
1 parent 1b290a2 commit adc377a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
1 change: 1 addition & 0 deletions js/src/ui/AccountCard/accountCard.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

transition: transform ease-out 0.1s;
transform: scale(1);
overflow: hidden;

&.copied {
animation-duration: 0.25s;
Expand Down
13 changes: 8 additions & 5 deletions js/src/ui/Form/AddressSelect/addressSelect.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@
}

.label {
margin: 1rem 2.5rem 0.25em;
margin: 1rem 0.5rem 0.25em;
color: rgba(255, 255, 255, 0.498039);
}

.underline {
position: relative;
margin: 0 9rem 0 2.5rem;
margin: 0 0.5rem 0 0.5rem;
}

.empty {
Expand All @@ -94,7 +94,7 @@

.input {
font-size: 1.5em;
padding: 0 9rem 0.5em 2.5rem;
padding: 0 9rem 0.5em 0.5rem;
display: block;

padding-right: 6rem;
Expand All @@ -108,7 +108,7 @@
flex-direction: row;
justify-content: flex-start;

margin: 2rem 2rem 0;
margin: 2rem 0 0;

> * {
flex: 1;
Expand All @@ -123,8 +123,11 @@

.title {
text-transform: uppercase;
font-size: 1.5em;
font-color: white;

h3 {
margin: 0;
}
}

.cards {
Expand Down
6 changes: 3 additions & 3 deletions js/src/ui/Form/AddressSelect/addressSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,9 @@ class AddressSelect extends Component {
id={ id }
className={ styles.input }
placeholder={ ilHint }

onBlur={ this.handleInputBlur }
onFocus={ this.handleInputFocus }
onChange={ this.handleChange }

ref={ this.setInputRef }
/>
{ this.renderLoader() }
Expand Down Expand Up @@ -321,7 +319,9 @@ class AddressSelect extends Component {

return (
<div className={ styles.category } key={ `${key}_${index}` }>
<div className={ styles.title }>{ label }</div>
<div className={ styles.title }>
<h3>{ label }</h3>
</div>
{ content }
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions js/src/ui/Loading/loading.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ export default class Loading extends Component {

render () {
const { className, size } = this.props;
const _size = size * 60;
const computedSize = size * 60;

return (
<div className={ [ styles.loading, className ].join(' ') }>
<CircularProgress size={ _size } />
<CircularProgress size={ computedSize } />
</div>
);
}
Expand Down
3 changes: 3 additions & 0 deletions js/src/ui/Portal/portal.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ $top: 20vh;
opacity: 0;
z-index: -10;

padding: 1em;
box-sizing: border-box;

* {
min-width: 0;
}
Expand Down

0 comments on commit adc377a

Please sign in to comment.