Skip to content

Commit

Permalink
fix z index
Browse files Browse the repository at this point in the history
  • Loading branch information
shelbywilson committed Oct 7, 2024
1 parent feb1dca commit d0a3276
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/css/world.03.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ header img {
width: 100%;
max-width: 56rem;
height: min-content;
z-index: 10;
z-index: 100;
}

.info__inner {
Expand Down
4 changes: 3 additions & 1 deletion world.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<title>in our time</title>
<link rel="stylesheet" type="text/css" href="./client/css/common.03.css" />
<link rel="stylesheet" type="text/css" href="./client/css/index.03.css" />
<link rel="stylesheet" type="text/css" href="./client/css/world.03.css?v=1.1" />
<link rel="stylesheet" type="text/css" href="./client/css/world.03.css?v=1.11" />
<link rel="icon"
href="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Official_portrait_of_Lord_Bragg_crop_2.jpg/440px-Official_portrait_of_Lord_Bragg_crop_2.jpg" />
<script src="client/util.03.js"></script>
Expand Down Expand Up @@ -474,6 +474,7 @@
function setInfoBox(episode, updateLog) {
const info = document.querySelector('#info');
info.style.pointerEvents = 'all';
info.style.touchAction = '';
info.style.opacity = 1;
document.querySelector('#info h4').innerHTML = `${episode.date}`
document.querySelector('#info h3').innerHTML = `${episode.topic}`
Expand Down Expand Up @@ -501,6 +502,7 @@
const info = document.querySelector('#info');
info.style.opacity = 0;
info.style.pointerEvents = 'none';
info.style.touchAction = 'none';
})
return scene;
}
Expand Down

0 comments on commit d0a3276

Please sign in to comment.