日志管理

This commit is contained in:
sjl
2024-10-22 13:19:13 +08:00
parent 96cd44f79f
commit 675ceb4c1e
9 changed files with 396 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
/* 添加样式 */
.time-control {
display: flex;
align-items: center;
margin:0 0 0 300px ; /* 使整体居中 */
}
.select {
margin-right: 10px; /* 下拉框右侧间距 */
width: 90px; /* 下拉框宽度 */
}
.date-display {
display: flex;
align-items: center;
margin-right: 10px; /* 日期选择器右侧间距 */
width: 250px;
}
.date-picker {
margin-right: 10px; /* 日期选择器之间的间距 */
}
.triangle-button {
margin:0 2px; /* 设置左右间距 */
}
.left_triangle {
width: 0;
height: 0;
border-top: 10px solid transparent; /* 上边透明 */
border-bottom: 10px solid transparent; /* 下边透明 */
border-right: 15px solid white; /* 左边为白色 */
}
.right_triangle {
width: 0;
height: 0;
border-top: 10px solid transparent; /* 上边透明 */
border-bottom: 10px solid transparent; /* 下边透明 */
border-left: 15px solid white; /* 左边为白色 */
}