Add active state to footer's "Powered by" links

This commit is contained in:
daudix
2024-08-31 03:40:22 +03:00
parent bada5ff98f
commit a69352c8b5
2 changed files with 6 additions and 0 deletions

View File

@ -117,6 +117,7 @@
}
.link {
display: inline-block;
transition: var(--transition);
box-shadow: var(--edge-highlight);
border-radius: var(--rounded-corner-small);
@ -128,5 +129,9 @@
background-color: var(--primary-color);
color: var(--contrast-color);
}
&:active {
transform: scale(var(--active));
}
}
}