forked from verdnatura/salix-front
style: refs #6899 fixed style
This commit is contained in:
parent
ace55c554f
commit
3f8cafd201
|
@ -151,7 +151,12 @@ const ticketsColumns = ref([
|
|||
<QTable v-if="tickets" :columns="ticketsColumns" :rows="tickets" flat>
|
||||
<template #header="props">
|
||||
<QTr :props="props">
|
||||
<QTh class="tr-header" v-for="col in props.cols" :key="col.name" :props="props">
|
||||
<QTh
|
||||
class="tr-header"
|
||||
v-for="col in props.cols"
|
||||
:key="col.name"
|
||||
:props="props"
|
||||
>
|
||||
{{ t(col.label) }}
|
||||
</QTh>
|
||||
</QTr>
|
||||
|
@ -179,10 +184,10 @@ const ticketsColumns = ref([
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.tr-header{
|
||||
color: #a8a8a8;
|
||||
.tr-header {
|
||||
color: var(--vn-label-color);
|
||||
}
|
||||
.no-uppercase{
|
||||
.no-uppercase {
|
||||
text-transform: none;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue