Skip to content

Commit

Permalink
minor adjustments to sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
jtroo committed Apr 10, 2024
1 parent 4f10ab6 commit 32b39f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ textarea:focus {
margin: 0;
}
#result {
font-size: 14px;
font-size: 13px;
max-height: 100%;
min-width: 448px;
}
Expand Down
4 changes: 2 additions & 2 deletions style.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ let btnsEl = document.getElementById('actions-buttons');
let resultEl = document.getElementById('result');

function setBtnsWidth() {
btnsEl.style.minWidth = cfgEl.clientWidth + 'px';
resultEl.style.minWidth = cfgEl.clientWidth + 'px';
btnsEl.style.minWidth = cfgEl.offsetWidth + 'px';
resultEl.style.minWidth = cfgEl.offsetWidth + 'px';
}

setBtnsWidth();
Expand Down

0 comments on commit 32b39f3

Please sign in to comment.