diff --git a/src/components/DataTable.vue b/src/components/DataTable.vue index 34a5242..2073926 100644 --- a/src/components/DataTable.vue +++ b/src/components/DataTable.vue @@ -46,17 +46,22 @@ table { th, td { - padding: 1em; + padding: 0.5em 1em; } } thead { tr { - background-color: burlywood; + background-color: #3f4c6b; + color: #fff; } } tbody { + tr { + background-color: #fff; + } + tr:nth-child(odd) { background-color: #eee; }