fix(style): itemContainer margin overridden in production#189
Open
Bian-Zhuang wants to merge 37 commits intoTencent:developfrom
Open
fix(style): itemContainer margin overridden in production#189Bian-Zhuang wants to merge 37 commits intoTencent:developfrom
Bian-Zhuang wants to merge 37 commits intoTencent:developfrom
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] <support@github.com> 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 <uyarnchen@gmail.com>
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] <support@github.com>
Author
|
@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! 🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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