vueComponent / pro-components

easy use `Ant Design Vue` layout
MIT License
535 stars 214 forks source link

[BUG] layout: 'side' & fixSiderbar: false 时 siderbar 的z-index问题 #214

Closed zhangkx666 closed 2 years ago

zhangkx666 commented 2 years ago

🐛 Bug 描述 Bug description

layout: 'side' fixSiderbar: false 配置这两项时,siderbar看起来怪怪的,如图:

image

🏞 期望结果 Desired result

image

🚑 其他信息 Other information

加上z-index 的css后貌似正常了

.ant-pro-sider {
  z-index: 20;
}
sendya commented 2 years ago

我观察 react antd procomponents 官方版本也是如此

image

可以临时性的修正一下,但官方渠道没修正之前,本修正方案不会作为标准方案供后续兼容。(后续如果官方出了修正,会直接同步官方的修正 不兼容当前修正的实现方式)

如果急需,你可以直接通过样式添加,无需等待 pro 库发版。

zhangkx666 commented 2 years ago

ok