fix(Dashboard): width card-line*-chart-example ie issue

This commit is contained in:
xidedix
2018-06-05 16:33:16 +02:00
parent 7a8847b3dd
commit 5867fe1c3b
+9 -2
View File
@@ -16,7 +16,7 @@
<h4 class="mb-0">9.823</h4>
<p>Members online</p>
</b-card-body>
<card-line1-chart-example chartId="card-chart-01" class="chart-wrapper px-3" style="height:70px;" height="70"/>
<card-line1-chart-example chartId="card-chart-01" class="chart-wrapper px-3" style="height:70px;" :height="70"/>
</b-card>
</b-col>
<b-col sm="6" lg="3">
@@ -34,7 +34,7 @@
<h4 class="mb-0">9.823</h4>
<p>Members online</p>
</b-card-body>
<card-line2-chart-example chartId="card-chart-02" class="chart-wrapper px-3" style="height:70px;" height="70"/>
<card-line2-chart-example chartId="card-chart-02" class="chart-wrapper px-3" style="height:70px;" :height="70"/>
</b-card>
</b-col>
<b-col sm="6" lg="3">
@@ -568,3 +568,10 @@ export default {
}
}
</script>
<style>
/* IE fix */
#card-chart-01, #card-chart-02 {
width: 100% !important;
}
</style>