wushangwei

Results 3 comments of wushangwei

I just ran into the similar problem, and I checked for my configs in /etc/sddm.conf.d/. I found that the config file created by KDE, kde_settings, contains [X11] section which makes...

I found just adding `ServerArguments=-dpi 144` under [X11] section sets dpi even for SDDM under wayland, and does not reproduce the problem.

我也遇到了类似的问题,在最新版本的浏览器上显示正常,但在老版本(如83版本的chromium)上显示异常,最后通过参考[https://umijs.org/docs/api/runtime-config#rootcontainerlastrootcontainer-args](umi文档)和[https://ant.design/docs/react/compatible-style-cn](antd文档)基本解决。 方法就是在src/app.tsx添加下面的函数: ```tsx export function rootContainer(container) { return ( {container} ); } ```