Skip to content

fix(common): projects list style bug #2154

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
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion shell/app/common/components/table/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
padding: 4px 0;

&.double-row {
padding: 9px 0;
padding: 8px 0;
}

& > div {
Expand Down
2 changes: 1 addition & 1 deletion shell/app/common/components/table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function WrappedTable<T extends object = any>({
<div className="flex flex-col">
<Ellipsis
title={<span className={onRow && subTitle ? 'erda-table-td-title' : ''}>{displayedText}</span>}
className="leading-none"
className="leading-4"
/>
{Object.keys(args).includes('subTitle') && (
<span className="erda-table-td-subTitle truncate">{subTitleText || '-'}</span>
Expand Down