Skip to content

Commit de4550f

Browse files
author
Yeliazar
committed
updated table Dynamic
1 parent 7b709cb commit de4550f

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

src/pages/Ecommerce/ProductsGrid/components/ProductCard/ProductCard.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103

104104
.productsCardDescription {
105105
text-transform: capitalize;
106-
color: theme-color('inverce');
106+
color: theme-color('inverse');
107107
margin: 1.5px 0;
108108
}
109109

src/pages/Tables/Dynamic/Dynamic.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@
1919
}
2020

2121
.VueTables__table.table {
22+
23+
margin-top: 1rem;
24+
2225
tr {
2326
th {
24-
background: $primary;
25-
color: var(--light-color);
26-
border: none;
27+
color: theme-color('inverse');
2728
}
2829
td {
2930
vertical-align: middle;
@@ -37,7 +38,7 @@
3738
margin-top: 3px;
3839

3940
&:before {
40-
color: var(--light-color);
41+
color: theme-color('inverse');
4142
}
4243
}
4344
}

src/pages/Tables/Dynamic/Dynamic.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Another table built with <a href="https://www.npmjs.com/package/vue-tables-2"
3333
target="_blank" rel="noopener noreferrer">vue-tables-2</a>
3434
</p>
35-
<v-client-table :data="data" :columns="columns" :options="options" class="vue-table"/>
35+
<v-client-table :data="data" :columns="columns" :options="options"/>
3636
</Widget>
3737
</div>
3838
</template>
@@ -52,7 +52,7 @@ export default {
5252
perPage: 10,
5353
pagination: { chunk: 10, dropdown: false },
5454
texts: { filter: '', count: '', limit: '' },
55-
columnsClasses: { id: 'width-100' },
55+
columnsClasses: { id: 'width-100'},
5656
skin: 'table table-striped',
5757
sortIcon: {
5858
base: 'fa text-muted', up: 'fa-chevron-up', down: 'fa-chevron-down', is: 'fa-sort',

0 commit comments

Comments
 (0)