Skip to content

Commit

Permalink
Updated footer contact link and copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenriseld committed May 21, 2024
1 parent 96cc3bf commit 3e2d261
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions Gallery.Web/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ import Menu from './components/Menu.vue'
</main>
<footer>
<div class="contact-info">
<a href="mailto:[email protected]">[email protected]</a>
<a href="mailto:[email protected]"
class="contact-link">[email protected]</a>
</div>
<div>
<p>&copy; Ruben Riseld 2024</p>
<p class="copy-text">&copy; Ruben Riseld 2024</p>
</div>
</footer>
</template>
Expand Down Expand Up @@ -47,28 +48,45 @@ footer {
justify-content: space-between;
}
a {
.contact-link {
color: var(--darker-color);
text-decoration: none;
font: inherit;
font-weight: bold;
font-family: inherit;
padding-bottom: 0.2rem;
}
a:hover {
.contact-link:hover {
background: linear-gradient(var(--view-primary-color), var(--view-primary-color)) no-repeat;
background-size: 100% 4px;
background-position: 0 100%;
}
a,
p {
.copy-text {
font-weight: lighter;
color: var(--dark-color);
}
.contact-link,
.copy-text {
font-size: 1.3rem;
letter-spacing: 0.4px;
}
@media screen and (max-width: 768px) {
footer {
padding: 1rem;
flex-direction: column;
justify-content: flex-start;
}
.contact-link,
.copy-text {
font-size: 1rem;
}
.copy-text {
margin-top: 1rem;
}
}
</style>

0 comments on commit 3e2d261

Please sign in to comment.