Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
fix(app): fix app layout
Browse files Browse the repository at this point in the history
When an order was filled, the tabs and the chart were wrapped.
  • Loading branch information
albertosantini committed Mar 16, 2017
1 parent 80f6308 commit c9f6f60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/app/common/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
ng-class="{'bg-blue': $ctrl.tabSelectedIndex === 6}">Plugins</a>
</nav>

<div class="flex flex-wrap flex-row ma2 pa2">
<div class="flex flex-wrap flex-column min-w-25">
<div class="flex flex-wrap-m flex-row ma2 pa2">
<div class="flex flex-wrap-m flex-column min-w-25">
<account class="mb4"></account>
<quotes class="mb4"></quotes>
<toasts></toasts>
</div>
<div class="flex flex-wrap flex-column min-w-75">
<div class="flex flex-wrap-m flex-column min-w-75">
<ng-switch on="$ctrl.tabSelectedIndex">
<trades ng-switch-when="0" class="ma2 pa2"></trades>
<orders ng-switch-when="1" class="ma2 pa2"></orders>
Expand Down

0 comments on commit c9f6f60

Please sign in to comment.