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

Commit

Permalink
fix(app): disable overflow on app window
Browse files Browse the repository at this point in the history
  • Loading branch information
devinus committed Apr 11, 2018
1 parent 06bf516 commit 725fa24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/account-send/template.hbs
Expand Up @@ -28,7 +28,7 @@
required=true minlength=1
onChange=(action 'changeAmount' model) as |el|}}
<div class="input-group">
{{el.control lang="en-US"}}
{{el.control}}
<div class="input-group-append">
<button type="button" class="btn btn-outline-secondary"
title={{t 'totalAvailableBalance'}}
Expand Down
1 change: 1 addition & 0 deletions app/index.html
Expand Up @@ -17,6 +17,7 @@
html, body {
border-radius: 10px;
-webkit-app-region: drag;
overflow: hidden;
}
</style>

Expand Down
1 change: 1 addition & 0 deletions app/styles/app.scss
Expand Up @@ -22,6 +22,7 @@ body {
main {
height: calc(100vh - 100px);
display: flex;
overflow: hidden;
flex-direction: column;
justify-content: space-evenly;
will-change: opacity;
Expand Down

0 comments on commit 725fa24

Please sign in to comment.