Added Twitter and GitHub links to footer

This commit is contained in:
Chris Kankiewicz
2019-12-30 23:30:09 -07:00
parent f32bec991f
commit 2da38b019b
2 changed files with 16 additions and 3 deletions

View File

@@ -47,9 +47,17 @@
</ul>
</div>
<footer>
<div class="container border-t-2 border-gray-800 text-center mx-auto px-4 py-8">
<footer class="container border-t-2 border-gray-800 text-center mx-auto px-4 py-8">
<div class="pb-2">
Powered by <a href="https://www.directorylister.com" class="underline hover:text-blue-700">Directory Lister</a>
<a href="https://twitter.com/DirectoryLister" title="Twitter" class="text-gray-400 hover:text-twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/DirectoryLister/DirectoryLister" title="GitHub" class="text-gray-400 hover:text-gray-800">
<i class="fab fa-github"></i>
</a>
</div>
</footer>

View File

@@ -1,6 +1,11 @@
module.exports = {
theme: {
extend: {}
extend: {
textColor: {
github: '#171515',
twitter: '#1DA1F2'
}
}
},
variants: {
visibility: ['responsive', 'hover', 'group-hover']