fix: color field sizing being incorrect (#7566)

This commit is contained in:
Beka Westberg
2023-10-02 13:16:03 -07:00
committed by GitHub
parent 6b023b3a32
commit 5151b28e7d
2 changed files with 11 additions and 19 deletions

View File

@@ -217,9 +217,9 @@ export class ConstantProvider extends BaseConstantProvider {
this.FIELD_DROPDOWN_SVG_ARROW_PADDING = this.FIELD_BORDER_RECT_X_PADDING;
this.FIELD_COLOUR_DEFAULT_WIDTH = 2 * this.GRID_UNIT;
this.FIELD_COLOUR_DEFAULT_WIDTH = 6 * this.GRID_UNIT;
this.FIELD_COLOUR_DEFAULT_HEIGHT = 4 * this.GRID_UNIT;
this.FIELD_COLOUR_DEFAULT_HEIGHT = 8 * this.GRID_UNIT;
this.FIELD_CHECKBOX_X_OFFSET = 1 * this.GRID_UNIT;