0
0
Fork 0

refactor: refs #6899 moved css to app.scss

This commit is contained in:
Jon Elias 2024-04-22 11:20:25 +02:00
parent 6021e1e4ce
commit ab61a68f28
2 changed files with 9 additions and 11 deletions

View File

@ -136,6 +136,13 @@ select:-webkit-autofill {
}
}
.q-btn {
text-transform: none;
}
.tr-header {
color: var(--vn-label-color);
}
.q-chip,
.q-notification__message,
.q-notification__icon {
@ -168,4 +175,4 @@ input::-webkit-inner-spin-button {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}
}

View File

@ -171,7 +171,7 @@ const ticketsColumns = ref([
</template>
<template #body-cell-quantity="{ value, row }">
<QTd>
<QBtn class="no-uppercase" flat color="primary" dense>
<QBtn flat color="primary" dense>
{{ value }}
<CustomerDescriptorProxy :id="row.id" />
</QBtn>
@ -182,12 +182,3 @@ const ticketsColumns = ref([
</template>
</CardSummary>
</template>
<style lang="scss" scoped>
.tr-header {
color: var(--vn-label-color);
}
.no-uppercase {
text-transform: none;
}
</style>