Skip to content
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

Increase group gap #142

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 media/memory-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@

.byte-group {
font-family: var(--vscode-editor-font-family);
margin-right: 2px;
margin-right: 4px;
padding: 0 1px; /* we use this padding to balance out the 2px that are needed for the editing */
}

Expand Down
4 changes: 2 additions & 2 deletions src/webview/columns/data-column.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ export class EditableDataColumnRow extends React.Component<EditableDataColumnRow

export namespace DataColumn {
export namespace Styles {
// `margin-right: 2px` per group (see memory-table.css)
export const MARGIN_RIGHT_PX = 2;
// `margin-right: 4px` per group (see memory-table.css)
export const MARGIN_RIGHT_PX = 4;
// `padding: 0 1px` applies 1px right and left per group (see memory-table.css)
export const PADDING_RIGHT_LEFT_PX = 2;
}
Expand Down
Loading