Simon Guo

Results 268 comments of Simon Guo

我无法复现你问题,可以通过 [codesandbox](https://codesandbox.io/s/5vq6zo2z5l) 复现一下你的问题吗?

Currently rsuite does not adapt to the mobile, it is recommended to use it in desktop browser applications.

Thanks for the suggestion, this is indeed a good implementation. Follow-up we can consider this approach when designing. But I still don't recommend using two UI frameworks in one project....

The main reason we don't currently consider `css-in-js` is the implementation of multiple themes. In some business scenarios, multiple sets of UI-style themes need to be generated. https://github.com/rsuite/webpack-multiple-themes-compile But with...

- `babel-preset-rsuite` 在 babel 是怎么配置的? - less 变量 `@icon-font-path` 你有重置吗? 如果有,配置是怎么样的?

@Link-Kou 你当前可以通过以下方案解决问题: `@icon-font-path` 改为 CDN 地址: ``` https://cdn.bootcdn.net/ajax/libs/rsuite/4.8.0/styles/fonts/ // or https://cdn.jsdelivr.net/npm/rsuite/dist/styles/fonts ``` 或者关闭 style 的按需加载,全局引入 less ```js { "presets": [["rsuite", { style: false }]] } ``` 等待我们进一步排查一下,按需加载带来的字体路径问题。

@Inifit 为了复现你的问题,可以提供一个 codesandbox 示例吗? https://codesandbox.io/s/5vq6zo2z5l

@Inifit 你可以通过 for 循环去造数据。 我创建了一个示例,无法重现你的问题 https://codesandbox.io/s/rsuite-template-4m1wj

导致这个问题的原因是浏览器对 CSS 最大值有限制 https://stackoverflow.com/questions/16637530/whats-the-maximum-pixel-value-of-css-width-and-height-properties

@CharLee-ch 针对这个问题,后期会修复,暂时还没找到比较好的解决方案,如果你有什么建议可以给我们提 PR 。