Skip to content

Commit

Permalink
fix(Dialog): button ok on the right, cancel on the left
Browse files Browse the repository at this point in the history
Refs: #136
  • Loading branch information
tpoisseau committed Jul 23, 2024
1 parent 2fb5012 commit cf77094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/canvas_editor/editor_dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class EditorDialog {
}
const buttons = document.createElement('div');
buttons.style.display = 'flex';
buttons.style.justifyContent = 'flex-end';
buttons.style.flexDirection = 'row-reverse';
buttons.style.gap = '15px';
const okButton = document.createElement('button');
okButton.textContent = 'OK';
Expand Down

0 comments on commit cf77094

Please sign in to comment.