Services
@@ -115,14 +131,24 @@
.tags {
display: flex;
margin: 0;
- span {
- &:before {
- content: '#';
- opacity: 0.5;
+ gap: 0.5rem;
+ a {
+ color: var(--foreground);
+ text-decoration: none;
+ transition: all 0.2s ease-in-out;
+ span {
+ &:before {
+ content: '#';
+ opacity: 0.5;
+ }
+ &:not(:last-child)::after {
+ content: ',';
+ margin-right: 0.5rem;
+ }
}
- &:not(:last-child)::after {
- content: ',';
- margin-right: 0.5rem;
+ &:hover {
+ color: var(--accent);
+ transform: scale(1.08);
}
}
}