Skip to content

Commit

Permalink
web: Fix ImHex logo and progress bar default fill
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Jul 1, 2024
1 parent ec2a2a6 commit 88d24c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/web/source/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
</head>
<body>
<div id="loading" class="centered">
<img src="https://raw.githubusercontent.com/WerWolv/ImHex/master/plugins/builtin/romfs/assets/dark/banner.png" id="logo" alt="ImHex Logo">
<img src="https://raw.githubusercontent.com/WerWolv/ImHex/master/plugins/builtin/romfs/assets/dark/banner.svg" id="logo" alt="ImHex Logo">
<h1>A Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM.</h1>
<h2>Available both natively and on the web</h2>
<h5>ImHex runs directly in your web browser with the help of Emscripten and WebAssembly.</h5>
Expand Down
7 changes: 6 additions & 1 deletion dist/web/source/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ a:hover {


:root {
--progress: 25%;
--progress: 0%;
}

.progress-bar-container {
Expand Down Expand Up @@ -174,4 +174,9 @@ a:hover {
.progress-moved .progress-bar {
width: var(--progress);
background-color: #3864cb;
}

#logo {
width: 25%;
margin-top: 50px;
}

0 comments on commit 88d24c2

Please sign in to comment.