Skip to content

Commit

Permalink
Don't expand shadow overlay from resume open
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Mar 21, 2024
1 parent 9f56652 commit 9b053f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const projects = document.getElementById('projects');
function projectsResize() {
let heightAdd = 0;
for (const id in items) {
if (items[id].canOpen) {
if (items[id].canOpen && id !== 'resume') {
heightAdd += parseInt(items[id].content.getBoundingClientRect().height);
}
}
Expand Down

0 comments on commit 9b053f9

Please sign in to comment.