Use subdued for description

This commit is contained in:
rijkvanzanten
2020-06-11 16:20:32 -04:00
parent af23d38f00
commit c8d4441c08

View File

@@ -50,6 +50,10 @@
<template #item.count="{ item }">
<value-null v-if="item.id === 2" />
</template>
<template #item.description="{ item }">
<span class="description">{{ item.description }}</span>
</template>
</v-table>
</div>
</private-view>
@@ -175,4 +179,8 @@ export default defineComponent({
color: var(--primary);
}
.description {
color: var(--foreground-subdued);
}
</style>