fix: about tab links and icons

This commit is contained in:
David Ralph
2026-01-03 17:58:08 +00:00
parent 7807462c7b
commit 0b6fb4f3c2
3 changed files with 18 additions and 2 deletions

View File

@@ -31,6 +31,8 @@
img {
width: 75px;
height: auto;
opacity: 0;
animation: fadeIn 0.5s ease-in-out forwards;
@include themed {
border-radius: t($borderRadius);
@@ -38,6 +40,17 @@
}
}
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
.subtitle-photographers {
font-size: 16px;