@@ -514,9 +514,13 @@
padding-top: 10px;
box-sizing: border-box;
flex-direction: column;
+ box-shadow: var(--card-shadow);
+ // 背景
+ background: rgba(255, 255, 255, 0.2);
+ // 背景模糊程度
+ backdrop-filter: blur(2px);
// 下方线条
border-top: 1px solid rgba(255, 255, 255, 0.5);
- box-shadow: var(--card-shadow);
.chat-input-actions {
.chat-input-action {
@@ -1,12 +1,16 @@
.window-header {
padding: 14px 20px;
- // 上方线条
- border-bottom: 1px solid rgba(255, 255, 255, 0.5);
position: relative;
-
display: flex;
justify-content: space-between;
align-items: center;
+
+ // 上方线条
+ border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.window-header-title {