From 37d0592dcc69b002cf925050bd56d9da358b9f7e Mon Sep 17 00:00:00 2001 From: lyc Date: Mon, 16 Dec 2024 10:06:14 +0800 Subject: [PATCH] edit --- .../views/teachingDesign/container/right.vue | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/src/renderer/src/views/teachingDesign/container/right.vue b/src/renderer/src/views/teachingDesign/container/right.vue index 84e572b..61b323b 100644 --- a/src/renderer/src/views/teachingDesign/container/right.vue +++ b/src/renderer/src/views/teachingDesign/container/right.vue @@ -484,8 +484,29 @@ onUnmounted(() => { .con-item { width: 100%; flex-direction: column; - margin-bottom: 20px; - + padding-bottom: 20px; + position: relative; + padding-left: 15px; + box-sizing: border-box; + &::after{ + content: ''; + width: 15px; + height: 15px; + border-radius: 50%; + background: #409eff; + position: absolute; + left: -8px; + top: 5px; + } + &::before{ + content: ''; + width: 2px; + height: 100%; + background: #409eff; + position: absolute; + left: -1px; + top: 5px; + } .item-top { justify-content: space-between; align-items: center; -- 2.44.0.windows.1