From df81033b5b1ea5f688139c0ae76d17a3bf5d306b Mon Sep 17 00:00:00 2001 From: xqx_12138 Date: Sat, 14 Sep 2024 17:51:36 +0800 Subject: [PATCH] Auto Commit --- src/App.vue | 199 +++++++++++++++++++++++++++++++--------------------- 1 file changed, 119 insertions(+), 80 deletions(-) diff --git a/src/App.vue b/src/App.vue index 664cd3b..01aa816 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,39 +1,50 @@ + - \ No newline at end of file +.avatar-ai { + width: 40px; + height: 40px; + border-radius: 50%; + margin-right: 10px; /* AI 头像左侧间距 */ +} +.input-area { + display: flex; + align-items: center; + position: fixed; /* 将 input-area 固定 */ + bottom: 0; /* 置于页面底部 */ + left: 0; /* 使其与页面左侧对齐 */ + right: 0; /* 使其与页面右侧对齐 */ + padding: 10px; + background-color: white; /* 添加背景色 */ + box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */ +} +.input-area Input { + flex: 1; + margin-right: 10px; +} + + -- GitLab