feat(frontend):logo等尺寸调整限制

This commit is contained in:
junjie 2021-06-02 11:03:43 +08:00
parent 32a9980178
commit c3fce40038
5 changed files with 16 additions and 5 deletions

View File

@ -985,7 +985,8 @@ export default {
loginLogo: 'Login page header logo',
loginImage: 'Picture on the right side of the login page',
loginTitle: 'Login page title',
title: 'System name'
title: 'System name',
advice_size: 'Advice picture size'
},
auth: {
authConfig: 'Auth Config',

View File

@ -985,7 +985,8 @@ export default {
loginLogo: '登陸頁面頭部 Logo',
loginImage: '登陸頁面右側圖片',
loginTitle: '登陸頁面標題',
title: '系統名稱'
title: '系統名稱',
advice_size: '建議圖片大小'
},
auth: {
authConfig: '權限配置',

View File

@ -985,7 +985,8 @@ export default {
loginLogo: '登录页面头部logo',
loginImage: '登录页面右侧图片',
loginTitle: '登录页面标题',
title: '系统名称'
title: '系统名称',
advice_size: '建议图片大小'
},
auth: {
authConfig: '权限配置',

View File

@ -19,6 +19,10 @@
// color: rgb(191, 203, 217);
color: rgba(255,255,255,0.87);
float: left;
img{
width: auto;
max-height: 45px;
}
}
.el-menu {
float: left;

View File

@ -180,9 +180,13 @@ export default {
margin-top: 20px;
}
img{
width: 240px;
/*width: 240px;*/
width: auto;
max-height: 60px;
@media only screen and (max-width: 1280px) {
width: 200px;
/*width: 200px;*/
width: auto;
max-height: 50px;
}
}
}