summaryrefslogtreecommitdiff
path: root/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Motherboard/Specification/MotherboardSpecificationPage.vue')
-rw-r--r--src/views/Motherboard/Specification/MotherboardSpecificationPage.vue14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue b/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
index 926c231c..56586dcf 100644
--- a/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
+++ b/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
@@ -9,7 +9,8 @@
<b-table
responsive="md"
show-empty
- class="bootstrap-rounded-table"
+ class="table-rounded"
+ no-border-collapse
:items="items"
:fields="fields"
:empty-text="$t('global.table.emptyMessage')"
@@ -47,17 +48,11 @@ export default {
key: 'parametr',
label: 'Параметр',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-first',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'value',
label: 'Значение',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-last',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
],
items: [
@@ -86,8 +81,3 @@ export default {
},
};
</script>
-<style lang="scss" scoped>
-.bootstrap-rounded-table {
- margin: 16px 0;
-}
-</style>