Skip to content

fix(grid): fix bug after refactor #3527

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

Merged
merged 4 commits into from
Jun 24, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(grid): fix custom empty text align not center
  • Loading branch information
gimmyhehe committed Jun 23, 2025
commit acd3fdc7b4fddaab5f0191d6e7afbd391fa247b1
1 change: 1 addition & 0 deletions packages/theme-saas/src/grid/table.less
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,7 @@
@apply flex-auto;
@apply items-center;
@apply justify-center;
@apply text-center;
@apply sticky;
@apply left-0;
}
Expand Down
1 change: 1 addition & 0 deletions packages/theme/src/grid/table.less
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: sticky;
left: 0;
flex: auto;
Expand Down
Loading