Skip to content

Commit

Permalink
fix: german button rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
abose committed Mar 16, 2024
1 parent 026f412 commit 2eb13f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ <h5 data-i18n="footer.in-touch.header">Keep in Touch</h5>
function setUniformButtonWidth() {
var width1 = document.getElementById('download-plain-brackets').offsetWidth;
var width2 = document.getElementById('launch-editor-button').offsetWidth;
var maxWidth = Math.max(width1, width2, 250);
var maxWidth = Math.max(width1, width2, 275);

document.getElementById('download-plain-brackets').style.width = maxWidth + 'px';
document.getElementById('launch-editor-button').style.width = maxWidth + 'px';
Expand Down

0 comments on commit 2eb13f1

Please sign in to comment.