Skip to content
Merged
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
3 changes: 1 addition & 2 deletions src/components/SchemaRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export interface ISchemaRow extends IExtendableRenderers {

const ICON_SIZE = 12;
const ICON_DIMENSION = 20;
const ROW_OFFSET = 7;

export const SchemaRow: React.FunctionComponent<ISchemaRow> = ({
node,
Expand Down Expand Up @@ -80,7 +79,7 @@ export const SchemaRow: React.FunctionComponent<ISchemaRow> = ({
<div
className="absolute flex justify-center cursor-pointer p-1 rounded hover:bg-darken-3"
style={{
left: ICON_DIMENSION * -1 + ROW_OFFSET / -2,
left: combinerOffset,
width: ICON_DIMENSION,
height: ICON_DIMENSION,
}}
Expand Down