Skip to content

Commit

Permalink
fix unsupported browser view
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobar79 committed Jul 19, 2018
1 parent 086ab6e commit a6e0eef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ConnectScreen extends Component {

renderUnsupportedBrowser () {
return (
h('div.new-account-connect-form', {}, [
h('div.new-account-connect-form.unsupported-browser', {}, [
h('div.hw-connect', [
h('h3.hw-connect__title', {}, this.context.t('browserNotSupported')),
h('p.hw-connect__msg', {}, this.context.t('chromeRequiredForTrezor')),
Expand Down
6 changes: 5 additions & 1 deletion ui/app/css/itcss/components/new-account.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
display: flex;
flex-flow: column;
align-items: center;
padding: 0 30px;
padding: 0 30px 30px;

&__select-section {
display: flex;
Expand Down Expand Up @@ -379,6 +379,10 @@
height: 710px;
overflow: auto;

&.unsupported-browser {
height: 210px;
}

&__buttons {
margin-top: 39px;
display: flex;
Expand Down

0 comments on commit a6e0eef

Please sign in to comment.