Skip to content

Commit

Permalink
fix: use flex-start instead of start for align-items (#395)
Browse files Browse the repository at this point in the history
Co-authored-by: Clément Fischer <clement33@gmail.com>
  • Loading branch information
clement-fischer and Clément Fischer committed Jan 24, 2024
1 parent ee9b4c9 commit b8be1a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/controls/contextmenu/ContextMenu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

display: flex;
flex-direction: row;
align-items: start;
align-items: flex-start;
gap: $padding;
border-radius: $border-radius;

Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/modes/tablemode/TableMode.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

.jse-contents {
flex: 1;
align-items: start;
align-items: flex-start;
flex-direction: column;
display: flex;
overflow: auto;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/modes/treemode/JSONNode.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
.jse-contents {
display: flex;
flex-direction: row;
align-items: start; // important for the alignment of the context menu button and key in case of a multi line value
align-items: flex-start; // important for the alignment of the context menu button and key in case of a multi line value
}

.jse-contents {
Expand Down

0 comments on commit b8be1a5

Please sign in to comment.