From 7866aa30bd13dab1fc0662e1baf6675d0dc1b282 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期三, 02 四月 2025 15:42:30 +0800 Subject: [PATCH] 修改意见 --- src/components/chat/components/playBar/index.scss | 25 ++++++++++++++++++------- 1 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/components/chat/components/playBar/index.scss b/src/components/chat/components/playBar/index.scss index e116b2b..dd25068 100644 --- a/src/components/chat/components/playBar/index.scss +++ b/src/components/chat/components/playBar/index.scss @@ -1,4 +1,3 @@ - .set-waterTitle { line-height: 24px; font-weight: 500; @@ -64,10 +63,14 @@ transition: border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out; } .playInput { + + --y-padding: 9px; + --x-padding: 7px; align-items: flex-start; - width: 760px; + // width: 760px; position: relative; - padding: 4px 4px 4px 12px; + + padding: var(--y-padding) var(--x-padding) var(--y-padding) var(--x-padding); display: flex; -webkit-box-align: end; @@ -101,6 +104,7 @@ :deep(.el-textarea__inner) { // 鍘婚櫎绾� box-shadow: none; + padding:5px 2px } } :deep(.el-input__wrapper) { @@ -133,11 +137,18 @@ @keyframes breathe { 0%, 100% { - transform: scale(1); + transform: scale(0.6); } 50% { - transform: scale(1.35); + transform: scale(1); } } - animation: breathe 3s infinite ease-in-out; -} \ No newline at end of file + + animation: breathe 1.8s infinite ease-in-out; +} + +.question-input { + :deep(.el-input__count) { + @apply text-gray-400; + } +} -- Gitblit v1.9.3