Simplify border-related rules for like/unlike icons

We were keeping the same style and width when they were pressed, so we
can simply overwrite the color.
This commit is contained in:
Javi Martín
2023-10-10 22:18:22 +02:00
parent d2b0acb6b4
commit 0f45dbb896

View File

@@ -41,7 +41,7 @@
&:active,
&[aria-pressed=true] {
background: $like;
border: 2px solid $like;
border-color: $like;
}
}
}
@@ -54,7 +54,7 @@
&:active,
&[aria-pressed=true] {
background: $unlike;
border: 2px solid $unlike;
border-color: $unlike;
}
}
}