-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[CP Staging] Fix: align badge in workspace list #40599
Changes from 2 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 |
---|---|---|
|
@@ -3207,6 +3207,20 @@ const styles = (theme: ThemeColors) => | |
marginLeft: 3, | ||
}, | ||
|
||
WorkspaceRightColumn: { | ||
marginLeft: 100, | ||
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. Can you show me exactly what this looks like? I don't understand why we are hard coding so much margin. Does that mean we have 100px of space that can only be occupied by margin? How does that work when the viewport is bigger or smaller? It just feels like these hard coded margins are a hack and don't provide good responsiveness. |
||
}, | ||
|
||
workspaceThreeDotMenu: { | ||
marginLeft: 60, | ||
}, | ||
|
||
workspaceListBadge: { | ||
flexDirection: 'column', | ||
justifyContent: 'flex-start', | ||
marginTop: 6, | ||
}, | ||
|
||
autoGrowHeightMultilineInput: { | ||
maxHeight: 115, | ||
}, | ||
|
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.
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.
solved.