Skip to content

Commit

Permalink
added hover underline
Browse files Browse the repository at this point in the history
  • Loading branch information
d3liaa committed Jun 9, 2024
1 parent f32804a commit 2ca6698
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion frontend/src/assets/styles/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ main {
text-decoration: underline;
}

.text-underline:hover {
.text-underline-hover:hover {
text-decoration: underline !important;
}

Expand Down
32 changes: 24 additions & 8 deletions frontend/src/layouts/partials/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,23 +60,34 @@ SPDX-License-Identifier: AGPL-3.0-or-later
<div class="col-12 col-lg-3">
<div class="d-flex flex-column">
<span class="mb-1 text-semibold">Relevant links</span>
<a href="/">Web Components</a>
<a href="/how-to-add/">How To Add</a>
<a href="/how-to-create/">How To Create</a>
<a href="/validator/">Validator</a>
<a href="https://opendatahub.com/contact" target="_blank"
<a class="text-underline-hover" href="/">Web Components</a>
<a class="text-underline-hover" href="/how-to-add/">How To Add</a>
<a class="text-underline-hover" href="/how-to-create/"
>How To Create</a
>
<a class="text-underline-hover" href="/validator/">Validator</a>
<a
class="text-underline-hover"
href="https://opendatahub.com/contact"
target="_blank"
>Contact</a
>
</div>
</div>
<div class="col-12 col-lg-3 mt-3 mt-lg-0">
<div class="d-flex flex-column">
<span class="mb-1 text-semibold">Quickstart</span>
<a href="https://opendatahub.com" target="_blank"
<a
class="text-underline-hover"
href="https://opendatahub.com"
target="_blank"
>Open Data Hub Website</a
>
<a href="/">Web Components</a>
<a href="https://databrowser.opendatahub.com" target="_blank"
<a class="text-underline-hover" href="/">Web Components</a>
<a
class="text-underline-hover"
href="https://databrowser.opendatahub.com"
target="_blank"
>Databrowser</a
>
</div>
Expand All @@ -88,6 +99,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
>The Web Component Store is the result of a great collaboration
between many awesome people!
<a
class="text-underline-hover"
href="https://opendatahub.com/community#contributors"
target="_blank"
>
Expand Down Expand Up @@ -211,4 +223,8 @@ export default {
.border-black {
border-color: black !important;
}
.underline-hover:hover {
text-decoration: underline;
}
</style>

0 comments on commit 2ca6698

Please sign in to comment.