bugfix: 背景图片尺寸错误
All checks were successful
git提交控制 AiDA WEB-Node.js main 分支构建部署 / build (20.19.0) (push) Has been skipped

This commit is contained in:
2025-12-10 11:23:02 +08:00
parent 1424e3025d
commit 927e07bf79

View File

@@ -104,12 +104,12 @@ const handleConfirm = async () => {
overflow: hidden;
color: #fff;
position: relative;
background: url('@/assets/images/no_shouder_bg.png') no-repeat center center;
// background: url('@/assets/images/no_shouder_bg.png') no-repeat center center;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
&.form-mode {
background: url('@/assets/images/has_shouder_bg.png') no-repeat center center;
background: url('@/assets/images/has_shouder_bg.png') no-repeat center center/cover;
padding-top: 15.9rem;
}