refactor(ui): 更新登录页面样式,更换为可免费商用的登陆背景图
This commit is contained in:
parent
14f8c2dfba
commit
cd44728c1a
|
@ -63,6 +63,7 @@ ollama pull bge-m3:latest
|
|||
1. 本项目仍处于早期的实验版本,不建议直接放到生产环境中使用。
|
||||
|
||||
2. 本项目重构了多处ragflow的底层接口,不建议和原始ragflow项目同时使用,存在冲突风险。
|
||||
|
||||
如果只需要后台的用户/团队管理部分,可修改`web/.env`中`RAGFLOWPLUS_MANAGEMENT_WEB_IMAGE`和`RAGFLOWPLUS_MANAGEMENT_SERVER_IMAGE`的版本为 v0.1.2
|
||||
|
||||
3. 本项目专注RAG,移除Agent的部分,如有Agent需求,请绕路。
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 888 KiB |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 3.3 MiB |
|
@ -41,7 +41,7 @@ export default {
|
|||
login: {
|
||||
login: '登录',
|
||||
signUp: '注册',
|
||||
loginDescription: '很高兴再次见到您!',
|
||||
loginDescription: '很高兴见到您!',
|
||||
registerDescription: '很高兴您加入!',
|
||||
emailLabel: '邮箱',
|
||||
emailPlaceholder: '请输入邮箱地址',
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
.loginLeft {
|
||||
// width: 610px;
|
||||
width: 40%;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
background-color: rgba(226, 254, 253, 0.742);
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
@ -33,10 +33,10 @@
|
|||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(24, 73, 169, 0.6);
|
||||
background-image: url('@/assets/svg/login-background.svg');
|
||||
background-image: url('@/assets/svg/login-background.jpg'); // 图像来源:https://unsplash.com/s/photos/technology 可免费商用
|
||||
background-size: cover;
|
||||
background-blend-mode: multiply;
|
||||
filter: blur(3px);
|
||||
// filter: blur(3px);
|
||||
background-position: center;
|
||||
z-index: -1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue