修改样式

This commit is contained in:
wangjie 2025-04-25 20:48:20 +08:00
parent 03ec8346df
commit 20e1b35f37
3 changed files with 39 additions and 3 deletions

View File

@ -299,6 +299,18 @@
font-weight: 700;
margin-bottom: 20px;
position: relative;
&::after {
content: "";
position: absolute;
bottom: 2px;
left: 0;
width: 78px;
height: 4px;
background: linear-gradient(90deg, #3597f9c4 0%, rgba(53, 150, 249, 0) 100%);
border-radius: 4px 4px 4px 4px;
}
}
.left {
width: calc(100% - 400px);

View File

@ -53,6 +53,17 @@
font-weight: 700;
margin-bottom: 20px;
position: relative;
&::after {
content: "";
position: absolute;
bottom: 2px;
left: 0;
width: 78px;
height: 4px;
background: linear-gradient(90deg, #3597f9c4 0%, rgba(53, 150, 249, 0) 100%);
border-radius: 4px 4px 4px 4px;
}
}
}
}

View File

@ -40,10 +40,18 @@
<el-button type="primary" size="small">处置下发</el-button>
</div>
</div>
<div class="bottom">
<el-link type="primary">评论</el-link>
<el-link type="primary">会议回放</el-link>
<el-link type="danger">删除</el-link>
<el-link type="primary">
<el-icon><ChatDotSquare /></el-icon>
评论</el-link
>
<el-link type="primary"
><el-icon><VideoPlay /></el-icon></el-link
>
<el-link type="danger"
><el-icon><Delete /></el-icon></el-link
>
</div>
</div>
</div>
@ -343,6 +351,11 @@
.bottom {
display: flex;
justify-content: flex-end;
:deep(.el-link--inner) {
display: flex;
align-items: center;
gap: 2px;
}
}
}
}