Public Access
1
0

new: implement like counter for posts

This commit is contained in:
2025-08-25 17:23:35 -04:00
parent d5f7d68c42
commit bf6b72769b
6 changed files with 146 additions and 4 deletions

View File

@@ -182,3 +182,18 @@ article ol {
article li {
margin-bottom: 0.5rem;
}
.like-icon {
cursor: pointer;
transition: color 0.2s ease-in-out;
}
.like-icon:hover {
color: #fff;
transform: scale(1.15);
}
.like-icon.liked {
cursor: pointer;
color: #e2264d;
}
.like-icon.liked:hover {
transform: scale(1.15);
}