mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
feat: enhance Open Graph and Twitter Card metadata; improve tab display logic and animations
This commit is contained in:
@@ -65,6 +65,27 @@ main {
|
||||
padding: 3rem;
|
||||
}
|
||||
|
||||
/* Hide all tabs by default to prevent flash on page load */
|
||||
.tabcontent {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Tab switch animation */
|
||||
@keyframes tabFadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(8px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.tabcontent.tab-animate {
|
||||
animation: tabFadeIn 0.3s ease-out forwards;
|
||||
}
|
||||
|
||||
main h1.hometitle {
|
||||
font-size: 4.0rem;
|
||||
line-height: 4rem;
|
||||
|
||||
Reference in New Issue
Block a user