Fix animation

This commit is contained in:
Florian Hoss 2024-06-11 12:02:46 +02:00
parent d2c374d5ed
commit 985e6e930e
No known key found for this signature in database
GPG key ID: 0638DC11BFD36662
2 changed files with 1 additions and 7 deletions

View file

@ -25,7 +25,7 @@
@apply text-xs truncate text-secondary; @apply text-xs truncate text-secondary;
} }
.hover-effect { .hover-effect {
@apply no-underline md:hover:underline underline-offset-2 decoration-primary text-sm text-slate-700 dark:text-slate-300 hover:text-slate-900 dark:hover:text-slate-50 transition-all ease-linear duration-150; @apply no-underline md:hover:underline underline-offset-2 decoration-primary text-sm opacity-80 hover:opacity-100 transition-all ease-linear duration-150;
} }
.heading { .heading {
@apply text-lg text-secondary select-none truncate underline decoration-primary underline-offset-4; @apply text-lg text-secondary select-none truncate underline decoration-primary underline-offset-4;

View file

@ -18,12 +18,6 @@ templ Base(title, version string) {
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png"/> <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png"/> <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png"/>
<link rel="manifest" href="/assets/favicon/site.webmanifest"/> <link rel="manifest" href="/assets/favicon/site.webmanifest"/>
<style>
.bookmark-link:hover .img {
opacity: 1;
transition: opacity linear 0.15s;
}
</style>
<link rel="stylesheet" href={ getStyleSheet(version) }/> <link rel="stylesheet" href={ getStyleSheet(version) }/>
</head> </head>
<body> <body>