-
-
Notifications
You must be signed in to change notification settings - Fork 727
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
fix: adjust favorite icon placement #8930
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ import StarBorderIcon from '@mui/icons-material/StarBorder'; | |
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender'; | ||
|
||
const StyledCell = styled(Box)(({ theme }) => ({ | ||
paddingLeft: theme.spacing(0), | ||
paddingRight: theme.spacing(1), | ||
paddingLeft: theme.spacing(2), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. reverts #8888 |
||
paddingRight: theme.spacing(0.5), | ||
})); | ||
|
||
const StyledIconButton = styled(IconButton)(({ theme }) => ({ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,7 @@ interface IRowSelectCellProps { | |
const StyledBoxCell = styled(Box)(({ theme }) => ({ | ||
display: 'flex', | ||
justifyContent: 'center', | ||
paddingLeft: theme.spacing(1), | ||
paddingRight: theme.spacing(0), | ||
marginRight: theme.spacing(-2), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this will keep the project table compact while not affecting the search view There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tables have some default view that we can't get past so need a negative margin here |
||
})); | ||
|
||
export const RowSelectCell: FC<IRowSelectCellProps> = ({ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reverts #8888