Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderrudnik committed Aug 2, 2017
2 parents b0a4284 + b093653 commit 2ae5a32
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
7 changes: 3 additions & 4 deletions src/components/extra/Extra.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<overview-tab></overview-tab>
</div>
<div slot="Chart" class="d-flex justify-content-center">
<vuestic-chart v-bind:data="bubbleChartData" type="bubble"></vuestic-chart>
<vuestic-chart v-bind:data="chartData" type="line"></vuestic-chart>
</div>
<div slot="Setup Profile" class="d-flex justify-content-center">
<setup-profile-tab wizardType="simple"></setup-profile-tab>
Expand Down Expand Up @@ -78,7 +78,7 @@
import VuesticSocialNews from '../vuestic-components/vuestic-social-news/VuesticSocialNews.vue'
import OverviewTab from '../dashboard/overview-tab/OverviewTab.vue'
import SetupProfileTab from '../dashboard/setup-profile-tab/SetupProfileTab.vue'
import BubbleChartData from '../statistics/charts/BubbleChartData'
import chartData from '../statistics/charts/LineChartData'
export default {
name: 'extra',
Expand Down Expand Up @@ -172,7 +172,7 @@
photoURL: 'http://i.imgur.com/pgrHrPu.png'
}
],
bubbleChartData: BubbleChartData
chartData: chartData
}
}
}
Expand All @@ -181,7 +181,6 @@
<style lang="scss">
.tabs {
.overview-tab {
padding-top: 0 !important;
.explore-row {
display: none !important;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@
.dropdown-menu {
padding: 0;
.vuestic-scrollbar {
height: $dropdown-item-height * 4;
.scrollbar-wrapper {
max-height: $dropdown-item-height * 4;
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@
.dropdown-menu {
padding: 0;
.vuestic-scrollbar {
height: $dropdown-item-height * 4;
.scrollbar-wrapper {
max-height: $dropdown-item-height * 4;
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
width: 100%;
height: .125rem;
position: relative;
padding-bottom: $tab-content-pt;
div[class^='underscore-']{
background-color: $brand-primary;
height: .125rem;
Expand All @@ -101,7 +100,7 @@
}
.tab-content {
padding-bottom: $tab-content-pb;
padding-top: $tab-content-pt;
> .tab-pane {
width: 100%
}
Expand Down

0 comments on commit 2ae5a32

Please sign in to comment.