Skip to content

Commit

Permalink
fix symmetric issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SpoilerRules committed Apr 1, 2024
1 parent 9ab3a2f commit 8dd6fe4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class CommonElement {
)
setMaxSize(410.0, contentFieldHeight)
setMinSize(410.0, contentFieldHeight)
GridPane.setMargin(this, Insets(-0.62, 0.0, 0.0, -2.4))
GridPane.setMargin(this, Insets(-0.5, 0.0, 0.0, -2.4))

children.add(
HBox().apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class TabConsole : AbstractTab(4, "Console") {
isWrapText = true
isMouseTransparent = false
isFocusTraversable = false
setMaxSize(395.0, 285.0)
setMinSize(395.0, 285.0)
setMaxSize(395.0, 290.0)
setMinSize(395.0, 290.0)
background = Background(BackgroundFill(Color.TRANSPARENT, CornerRadii(16.0), Insets.EMPTY))
style =
"-fx-font-family: '${ResourceHandler.comfortaaBold.family}'; -fx-font-size: 14; -fx-text-fill: ${ColorPalette.textColor}; -fx-highlight-fill: ${ColorPalette.accentColor};"
Expand Down Expand Up @@ -68,9 +68,9 @@ class TabConsole : AbstractTab(4, "Console") {
null,
),
)
setMaxSize(410.0, 355.0)
setMinSize(410.0, 355.0)
GridPane.setMargin(this, Insets(-1.5, 0.0, 0.0, 4.4))
setMaxSize(410.0, 357.0)
setMinSize(410.0, 357.0)
GridPane.setMargin(this, Insets(-0.45, 0.0, 0.0, 4.4))
children.add(
HBox().apply {
alignment = Pos.CENTER
Expand Down

0 comments on commit 8dd6fe4

Please sign in to comment.