-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71f4021
commit f3eaed8
Showing
6 changed files
with
64 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,35 @@ | ||
<script> | ||
import GitIcon from '../Icons/Git.svelte'; | ||
let ghCommitHash = '#{GH_COMMIT_HASH}#'; | ||
// Dev mode | ||
if (ghCommitHash === '#{GH_COMMIT_HASH}#') { | ||
ghCommitHash = '71f4021b61d394d1ed3b5b1845dcb6df3907a538'; | ||
} | ||
</script> | ||
|
||
<style src="./style.scss"> | ||
</style> | ||
|
||
<div class="background"> | ||
<!-- <div class="wrapper"> --> | ||
<div class="footer"> | ||
<div> | ||
Made with 🔫 by | ||
<div class="made_by"> | ||
Made with 🔫 by | ||
<a href="https://github.com/SavageCore" target="_blank"> | ||
SavageCore | ||
</a> | ||
</div> | ||
<!-- </div> --> | ||
<div class="version"> | ||
<div class="icon"> | ||
<GitIcon /> | ||
</div> | ||
<a | ||
href="https://github.com/SavageCore/pd3-vault-cracker/commit/{ghCommitHash}" | ||
target="_blank"> | ||
{ghCommitHash.slice(0, 7)} | ||
</a> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,37 @@ | ||
.footer { | ||
font-family: "Roboto", sans-serif; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 10px 20px; | ||
padding: 0.5rem 1rem; | ||
color: #fff; | ||
background-color: #1c1b22; | ||
width: 100%; | ||
position: fixed; /* Change to fixed */ | ||
position: fixed; | ||
bottom: 0; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.footer a { | ||
text-decoration: none; | ||
color: #fff; | ||
font-weight: bold; | ||
} | ||
|
||
.made_by { | ||
display: flex; | ||
align-items: center; | ||
margin: 0 auto; | ||
} | ||
|
||
.version { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.version .icon { | ||
fill: #f14e32; | ||
width: 24px; | ||
margin-right: 0.5rem; | ||
display: flex; | ||
align-items: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- https://boxicons.com/ --> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
<path | ||
d="m21.62 11.108-8.731-8.729a1.292 1.292 0 0 0-1.823 0L9.257 4.19l2.299 | ||
2.3a1.532 1.532 0 0 1 1.939 1.95l2.214 2.217a1.53 1.53 0 0 1 1.583 | ||
2.531c-.599.6-1.566.6-2.166 0a1.536 1.536 0 0 | ||
1-.337-1.662l-2.074-2.063V14.9c.146.071.286.169.407.29a1.537 1.537 0 0 1 | ||
0 2.166 1.536 1.536 0 0 1-2.174 0 1.528 1.528 0 0 1 | ||
0-2.164c.152-.15.322-.264.504-.339v-5.49a1.529 1.529 0 0 | ||
1-.83-2.008l-2.26-2.271-5.987 5.982c-.5.504-.5 1.32 0 1.824l8.731 | ||
8.729a1.286 1.286 0 0 0 1.821 0l8.69-8.689a1.284 1.284 0 0 0 .003-1.822" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters