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

Commit

Permalink
fix width flow issues
Browse files Browse the repository at this point in the history
  • Loading branch information
askmike committed Jun 26, 2018
1 parent 2622e49 commit 2119675
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
6 changes: 3 additions & 3 deletions web/vue/src/components/backtester/backtestConfigBuilder.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template lang='jade'>
div
dataset-picker.my2(v-on:dataset='updateDataset')
dataset-picker.my2(v-on:dataset='updateDataset').contain
.hr
strat-picker.my2(v-on:stratConfig='updateStrat')
strat-picker.my2(v-on:stratConfig='updateStrat').contain
.hr
paper-trader(v-on:settings='updatePaperTrader')
paper-trader(v-on:settings='updatePaperTrader').contain
.hr
</template>

Expand Down
10 changes: 1 addition & 9 deletions web/vue/src/components/backtester/backtester.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template lang='jade'>
div
h2 Backtest
h2.contain Backtest
.hr
config-builder(v-on:config='check')
div(v-if='backtestable')
Expand Down Expand Up @@ -53,11 +53,3 @@ export default {
}
}
</script>

<style>
.contain {
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
</style>
1 change: 0 additions & 1 deletion web/vue/src/components/layout/header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default {}
<style>
.menu {
display: flex;
width: 100%;
flex-direction: row;
margin-top: 0;
margin-bottom: 2rem;
Expand Down

0 comments on commit 2119675

Please sign in to comment.