Open on new page
This commit is contained in:
parent
149ff8fd95
commit
e08ef27d6a
2 changed files with 21 additions and 11 deletions
|
|
@ -198,6 +198,8 @@
|
||||||
<div class="footer-links">
|
<div class="footer-links">
|
||||||
<a
|
<a
|
||||||
href="https://www.npmjs.com/package/reconcile-text"
|
href="https://www.npmjs.com/package/reconcile-text"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
aria-label="npm package"
|
aria-label="npm package"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
|
|
@ -212,6 +214,8 @@
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="https://pypi.org/project/reconcile-text/"
|
href="https://pypi.org/project/reconcile-text/"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
aria-label="PyPI package"
|
aria-label="PyPI package"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
|
|
@ -226,6 +230,8 @@
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="https://crates.io/crates/reconcile-text"
|
href="https://crates.io/crates/reconcile-text"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
aria-label="crates.io crate"
|
aria-label="crates.io crate"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
|
|
@ -240,6 +246,8 @@
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="https://github.com/schmelczer/reconcile"
|
href="https://github.com/schmelczer/reconcile"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
aria-label="GitHub repository"
|
aria-label="GitHub repository"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
|
|
|
||||||
|
|
@ -479,27 +479,29 @@ $DOT_RADIUS: 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
padding: 16px;
|
padding: 32px 16px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
gap: 24px;
|
||||||
color: $text-secondary;
|
color: $text-secondary;
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-link > svg {
|
.footer-links {
|
||||||
position: absolute;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-links > a > svg {
|
||||||
color: $text-secondary;
|
color: $text-secondary;
|
||||||
top: 50%;
|
width: 28px;
|
||||||
right: 36px;
|
height: 28px;
|
||||||
transform: translateY(-50%);
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
transition: transform 0.2s;
|
transition: transform 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-link > svg:hover {
|
.footer-links > a > svg:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transform: translateY(-50%) scale(1.15);
|
transform: scale(1.15);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue