mirror of
https://github.com/wah-su/wah-su.github.io.git
synced 2025-04-05 15:54:40 +00:00
add footer link colors transition on hover
This commit is contained in:
parent
6a41d4354b
commit
08bdb930ac
2 changed files with 29 additions and 5 deletions
|
@ -956,6 +956,13 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.hover\:text-\[\#FF851A\] {
|
||||
&:hover {
|
||||
@media (hover: hover) {
|
||||
color: #FF851A;
|
||||
}
|
||||
}
|
||||
}
|
||||
.sm\:flex-shrink-1 {
|
||||
@media (width >= 40rem) {
|
||||
flex-shrink: 1;
|
||||
|
|
|
@ -10,7 +10,7 @@ export default function Footer({ className }: FooterProps) {
|
|||
<div className="flex items-start flex-col gap-4">
|
||||
<a
|
||||
href="https://status.wah.su"
|
||||
className="flex flex-row items-center justify-center gap-3"
|
||||
className="flex flex-row items-center justify-center gap-3 hover:text-[#FF851A] transition-colors"
|
||||
target="_blank"
|
||||
>
|
||||
<div
|
||||
|
@ -35,12 +35,26 @@ export default function Footer({ className }: FooterProps) {
|
|||
/>
|
||||
</div>
|
||||
<span>Photo by</span>{" "}
|
||||
<a href="https://unsplash.com/@lgtts">Ilse Orsel</a> <span>on</span>{" "}
|
||||
<a href="https://unsplash.com">Unsplash</a>
|
||||
<a
|
||||
href="https://unsplash.com/@lgtts"
|
||||
className="hover:text-[#FF851A] transition-colors"
|
||||
>
|
||||
Ilse Orsel
|
||||
</a>{" "}
|
||||
<span>on</span>{" "}
|
||||
<a
|
||||
href="https://unsplash.com"
|
||||
className="hover:text-[#FF851A] transition-colors"
|
||||
>
|
||||
Unsplash
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex gap-8">
|
||||
<a href="https://wah.su/radiquum" className="flex gap-2">
|
||||
<a
|
||||
href="https://wah.su/radiquum"
|
||||
className="flex gap-2 hover:text-[#FF851A] transition-colors"
|
||||
>
|
||||
<div className="h-6 w-6 bg-white rounded-full overflow-hidden">
|
||||
<img
|
||||
src="/static/images/avatar_48.jpg"
|
||||
|
@ -50,7 +64,10 @@ export default function Footer({ className }: FooterProps) {
|
|||
</div>
|
||||
<p>Run by @Radiquum</p>
|
||||
</a>
|
||||
<a href="https://github.com/wah-su" className="flex gap-2">
|
||||
<a
|
||||
href="https://github.com/wah-su"
|
||||
className="flex gap-2 hover:text-[#FF851A] transition-colors"
|
||||
>
|
||||
<div className="h-6 w-6 bg-white rounded-full">
|
||||
<img
|
||||
src="/static/images/GitHub_Invertocat_Dark.png"
|
||||
|
|
Loading…
Add table
Reference in a new issue