0
0
Fork 0

fix(claimLines): refs #7001 add style to clear qchip

This commit is contained in:
Pablo Natek 2024-03-20 11:41:16 +01:00
parent 5580d15606
commit 1da314e425
2 changed files with 6 additions and 12 deletions

View File

@ -1,10 +1,5 @@
// app global css in SCSS form
@import './icons.scss';
body {
.q-chip__content {
color: 'red';
}
}
body.body--light {
--font-color: black;
@ -16,8 +11,7 @@ body.body--light {
background-color: var(--vn-page-color);
.q-header .q-toolbar,
.q-chip {
.q-header .q-toolbar {
color: var(--font-color);
}
.q-card,
@ -35,10 +29,6 @@ body.body--dark {
--vn-accent-color: #424242;
background-color: #222;
.q-chip {
color: black;
}
}
a {
@ -124,6 +114,10 @@ select:-webkit-autofill {
content: ' *';
}
.q-chip {
color: black;
}
input[type='number'] {
-moz-appearance: textfield;
}

View File

@ -161,7 +161,7 @@ function showImportDialog() {
<div class="row q-gutter-md">
<div>
{{ t('Amount') }}
<QChip :dense="$q.screen.lt.sm">
<QChip :dense="$q.screen.lt.sm" text-color="white">
{{ toCurrency(amount) }}
</QChip>
</div>