Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Assistant.vue
Original file line number Diff line number Diff line change
Expand Up @@ -503,10 +503,10 @@ ul {
}

.icon-status--success {
color: var(--color-success);
color: var(--color-element-success);
}

.icon-status--failed {
color: var(--color-error);
color: var(--color-element-error);
}
</style>
8 changes: 4 additions & 4 deletions src/nodes/Callout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,22 +91,22 @@ export default {
// Info (default) variables
&,
&--info {
--callout-border: var(--color-info, #006aa3);
--callout-border: var(--color-element-info, #006aa3);
}

// Warn variables
&--warn {
--callout-border: var(--color-warning);
--callout-border: var(--color-element-warning);
}

// Error variables
&--error {
--callout-border: var(--color-error);
--callout-border: var(--color-element-error);
}

// Success variables
&--success {
--callout-border: var(--color-success);
--callout-border: var(--color-element-success);
}
}
</style>
Loading