Skip to content

Commit 9dcdbb1

Browse files
committed
Fix link animations
1 parent 5b3c61b commit 9dcdbb1

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

index.html

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -153,16 +153,11 @@
153153
}
154154

155155
/* Additional Links Separator */
156-
.link-separator::after {
157-
content: '|';
156+
.link-separator {
158157
margin-left: 0.75rem; /* mx-3 */
159158
margin-right: 0.75rem; /* mx-3 */
160159
color: #4b5563; /* gray-600 */
161160
}
162-
.additional-links a:last-child .link-separator::after {
163-
content: ''; /* Don't show separator after the last link */
164-
margin: 0;
165-
}
166161
</style>
167162
</head>
168163
<body class="leading-normal tracking-normal">
@@ -207,11 +202,11 @@ <h2 class="text-3xl md:text-4xl font-bold mb-8 text-gray-100" data-aos="fade-up"
207202
</div>
208203
</div>
209204
<div class="container mx-auto px-6 text-center spock-blue-text text-md additional-links flex flex-wrap justify-center items-center gap-y-2 pt-8">
210-
<a href="https://spockframework.org/spock/javadoc/current" class="mx-3"><span class="link-separator">JavaDoc</span></a>
211-
<a href="https://github.com/spockframework/spock" class="mx-3"><span class="link-separator">Source Code</span></a>
212-
<a href="https://github.com/spockframework/spock/issues" class="mx-3"><span class="link-separator">Issue Tracker</span></a>
213-
<a href="https://github.com/spockframework/spock/discussions" class="mx-3"><span class="link-separator">Discussions</span></a>
214-
<a href="https://gitter.im/spockframework/spock" class="mx-3"><span class="link-separator">Chat</span></a>
205+
<a href="https://spockframework.org/spock/javadoc/current" class="mx-3 hover-underline-animation">JavaDoc</a> <span class="link-separator">|</span>
206+
<a href="https://github.com/spockframework/spock" class="mx-3 hover-underline-animation">Source Code</a> <span class="link-separator">|</span>
207+
<a href="https://github.com/spockframework/spock/issues" class="mx-3 hover-underline-animation">Issue Tracker</a> <span class="link-separator">|</span>
208+
<a href="https://github.com/spockframework/spock/discussions" class="mx-3 hover-underline-animation">Discussions</a> <span class="link-separator">|</span>
209+
<a href="https://gitter.im/spockframework/spock" class="mx-3 hover-underline-animation">Chat</a>
215210
</div>
216211
</section>
217212

0 commit comments

Comments
 (0)