refs #5990 feat(summarys): cusom colors
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2023-08-16 07:28:47 +02:00
parent c64ae1ccee
commit e383615092
2 changed files with 9 additions and 2 deletions

View File

@ -101,7 +101,7 @@ watch(props, async () => {
> .q-card {
width: 100%;
background-color: rgb(58, 58, 58);
background-color: var(--vn-gray);
padding: 15px;
font-size: 16px;
min-width: 275px;
@ -119,7 +119,7 @@ watch(props, async () => {
margin-right: 10px;
}
.value {
color: white; //$light-black;
color: var(--vn-text); //$light-black;
width: max-content;
overflow: hidden;
white-space: nowrap;

View File

@ -35,4 +35,11 @@ body.body--light {
color: white;
}
}
--vn-text: #000000;
--vn-gray: #dddddd;
}
body.body--dark {
--vn-text: #ffffff;
--vn-gray: #313131;
}