Skip to content

Commit 714c675

Browse files
fix(pdf-editor): use theme tokens for action buttons
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent b483e3c commit 714c675

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/PdfEditor/PdfEditor.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -458,9 +458,9 @@ defineExpose({
458458
}
459459
460460
.action-btn {
461-
border: 1px solid #cbd5e1;
462-
background: #f8fafc;
463-
color: #0f172a;
461+
border: 1px solid var(--color-border-maxcontrast, #cbd5e1);
462+
background: var(--color-main-background, #f8fafc);
463+
color: var(--color-main-text, #0f172a);
464464
padding: 4px;
465465
min-height: 0;
466466
min-width: 0;
@@ -473,7 +473,7 @@ defineExpose({
473473
transition: background 120ms ease;
474474
475475
&:hover {
476-
background: #e2e8f0;
476+
background: var(--color-background-hover, #e2e8f0);
477477
}
478478
479479
:deep(svg),

0 commit comments

Comments
 (0)