-
Notifications
You must be signed in to change notification settings - Fork 101
fix(style): itemContainer margin overridden in production #189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
fix(style): itemContainer margin overridden in production #189
Conversation
feat: 代码优化
* feat: 代码优化 * fix: fix card title * fix: fix color
feat: 修复badge,优化树状列表
fix: fix layout, fixes Tencent#26
fix: 修复dev:linux启动错误
1. 修复表单重置失败 2. 更新tdesign版本
* chore(deps): bump axios from 0.21.4 to 0.26.1 (Tencent#54) Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 0.26.1. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md) - [Commits](axios/axios@v0.21.4...v0.26.1) --- updated-dependencies: - dependency-name: axios dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: 修复图表文字重叠, fixes Tencent#50 * fix: loss css token (Tencent#58) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: yuyang <[email protected]>
1. 修复图表文字重叠 2. 升级axios 3. 升级tdesign 4. 解决css丢失问题
升级react-router-dom
1. 搜索框样式优化 2. 文件命名语义化 3. 增加面包屑功能 4. 图表主题功能优化
Bumps [qrcode.react](https://github.com/zpao/qrcode.react) from 3.0.1 to 3.0.2. - [Release notes](https://github.com/zpao/qrcode.react/releases) - [Changelog](https://github.com/zpao/qrcode.react/blob/main/CHANGELOG.md) - [Commits](zpao/qrcode.react@v3.0.1...v3.0.2) --- updated-dependencies: - dependency-name: qrcode.react dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
|
@xucz @uyarn Hi, this PR has passed all checks with no conflicts. The changes only affect the login page styles (mainly fixing the issue where itemContainer margin was overridden by .t-form default styles in production). It is now ready to be merged. Kindly help review and merge when convenient. Thank you! 🙏 |
What
Fixes an issue where the
itemContainer'smargin-topstyle was overridden by.t-formdefault styles in production builds.Why
In production, due to CSS load order and specificity,
.t-formapplies a defaultmargin-topthat overrides custom styles set initemContainer, leading to incorrect layout spacing.How
Increased the specificity of the selector using
:global(.t-form).itemContainerinindex.module.lessto ensure the intendedmargin-topis applied.Notes