Skip to content

Commit

Permalink
Added basic version indicator.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTarados committed Nov 5, 2023
1 parent 810b75a commit e25e8e8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CSS/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -237,3 +237,13 @@ body{
user-select: none;
text-align: center;
}

#version_indicator{
position: absolute;
left : calc(100% - 60px);
top : calc(100% - 25px);;
font-size: 15px;
color: #c9c8b7;
font-family: "Source Code Pro";
user-select: none;
}
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@
<div id = "timeline"></div>
</div>
</div>

<div id="version_indicator">
v1.2.6
</div>
</body>
</html>
1 change: 0 additions & 1 deletion js/render_logic/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ function unblock_buttons(){

const ff = require('node-find-folder');
var ff_result = new ff('challenges');
console.log(ff_result)
function switch_to_challenge_mode(file){
//open json
let json;
Expand Down

0 comments on commit e25e8e8

Please sign in to comment.