chore: scope link + button transitions

This commit is contained in:
Cory Dransfeldt 2024-02-17 21:30:17 -08:00
parent ee7266d644
commit 9369b48296
No known key found for this signature in database
2 changed files with 7 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "5.9.5",
"version": "5.9.6",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {

View file

@ -484,8 +484,12 @@ li {
color: var(--color-lightest);
}
a,
.pill--button {
a:hover,
a:focus,
a:active,
.pill--button:hover,
.pill--button:focus,
.pill--button:active {
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
}