Commit ffebc5f7 authored by Yuan Zhixiang's avatar Yuan Zhixiang
Browse files

修改高亮颜色

parent eaf7dc8c
......@@ -82,6 +82,6 @@ pre {
}
.breakpoint{
color: red;
color: #ff2700;
}
</style>
\ No newline at end of file
......@@ -14,9 +14,9 @@ const finished = computed(() => { // 已完成
const css_background_color = computed(() => { // 获取对应style
if (Object.values(highlight_steps.value).includes(this_step.value)) {
if (finished.value) {
return '#ffb4ab' // 已完成 高亮
return '#ff2700' // 已完成 高亮
} else {
return '#ffdad6' // 未完成 高亮
return '#ff937f' // 未完成 高亮
}
} else {
if (finished.value) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment