fix: layout problem of head navigation in narrow screen; 🐛

修复:窄屏下顶部导航布局问题;
This commit is contained in:
chenghongxing 2020-09-25 22:09:55 +08:00
parent b8ccb5c6a1
commit 80baf8d202

View File

@ -68,7 +68,7 @@ export default {
menuWidth() {
const {layout, searchActive} = this
const headWidth = layout === 'head' ? '100% - 188px' : '100%'
const extraWidth = searchActive ? '564px' : '364px'
const extraWidth = searchActive ? '600px' : '400px'
return `calc(${headWidth} - ${extraWidth})`
}
},