forked from Anarios/return-youtube-dislike
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Fixed "links" page talking a long time to load - Side effect: Moved credit section up... sorry (doesnt affect much)
- Loading branch information
1 parent
bb8def7
commit 8c5a376
Showing
4 changed files
with
89 additions
and
39 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
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,66 @@ | ||
<template> | ||
<div> | ||
|
||
<section style="position: relative;"> | ||
|
||
|
||
<div class="center"> | ||
<center> | ||
|
||
<h1 style="font-size: 3em; margin-bottom: 0;">Project Links</h1> | ||
|
||
<div style="color: #999"> | ||
<p style="margin-bottom: 1em;">Links to the project and it's developers</p> | ||
</div> | ||
|
||
<v-btn class="mainAltButton" :href="githubLink" target="_blank"> | ||
<v-icon style="margin-right: 0.5em;">mdi-github</v-icon> | ||
Github | ||
</v-btn> | ||
|
||
<v-btn class="mainAltButton" :href="discordLink" target="_blank"> | ||
<v-icon style="margin-right: 0.5em;">mdi-discord</v-icon> | ||
Discord | ||
</v-btn> | ||
|
||
<h1 style="margin-top: 1em;">Contact Me</h1> | ||
|
||
<v-btn class="mainAltButton" :href="emailLink" target="_blank"> | ||
<v-icon style="margin-right: 0.5em;">mdi-email</v-icon> | ||
</v-btn> | ||
|
||
</center> | ||
</div> | ||
|
||
|
||
</section> | ||
|
||
<p id="credits">Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990.</p> | ||
|
||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
#credits { | ||
position: absolute; | ||
bottom: 0; | ||
left: 50%; | ||
transform: translate(-50%,0); | ||
color: #555; | ||
} | ||
</style> | ||
|
||
<script> | ||
export default { | ||
layout: 'default_legacy', | ||
data() { | ||
return { | ||
githubLink: "https://github.com/Anarios/return-youtube-dislike", | ||
discordLink: "https://discord.gg/mYnESY4Md5", | ||
emailLink: "mailto:selivano.d@gmail.com " | ||
} | ||
} | ||
} | ||
</script> |
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