Skip to content

Commit

Permalink
BaseFooter styling updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonj806 committed Jun 11, 2020
1 parent 6810f3d commit d9b8c0f
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions src/components/BaseFooter.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<template>
<footer>
<div class='socials'>
<p class='social-text'>Social Media: </p>
<p class='social-text'>Socials: </p>
<a
target="_blank"
aria-label='Github Profile Link'
rel='noopener noreferrer'
class="link-github link"
href="https://github.com/wilsonj806"
>
<font-awesome-icon :icon="['fab', 'github']" size="1x" /> Github Profile
<font-awesome-icon :icon="['fab', 'github']" size="1x" /> Github
</a>
<a
target="_blank"
Expand All @@ -18,7 +18,7 @@
class="link"
href="https://linkedin.com/in/wilsonj806"
>
<font-awesome-icon :icon="['fab', 'linkedin-in']" size="1x" /> LinkedIn Profile
<font-awesome-icon :icon="['fab', 'linkedin-in']" size="1x" /> LinkedIn
</a>
<a
target="_blank"
Expand All @@ -31,7 +31,7 @@
</a>
</div>
<div class='copyright'>
<p class='cr-text'>{{ `&#169; Wilson Jiang ${year} - Designed and developed by me` }}</p>
<p class='cr-text'>{{ `&#169; Wilson Jiang ${year}` }}</p>
<p class='cr-text'>Built with Vue and Gridsome!</p>
</div>
</footer>
Expand All @@ -50,12 +50,15 @@ export default {

<style scoped>
footer {
height: 120px;
width: 100vw;
background: #9fd292;
height: 140px;
width: 100%;
border-top: 1px solid lightgrey;
padding-top: 32px;
display: flex;
justify-content: space-between;
align-items: center;
align-items: flex-start;
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
}
div {
Expand All @@ -66,13 +69,9 @@ div {
position: relative;
}
p {
color: rgb(50, 50, 50);
font-family: Arial, Helvetica, sans-serif;
}
.link:link, .link:visited {
color: rgb(50, 50, 50);
color: rgb(1, 80, 18);
text-decoration: none;
padding: 8px;
}
Expand Down

0 comments on commit d9b8c0f

Please sign in to comment.