Fix character image URLs, remove underline from quote speaker links

This commit is contained in:
Xevion
2022-05-22 20:29:22 -05:00
parent c1985b38fb
commit 2d4c4bfa94
2 changed files with 2 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ export default {
}, },
methods: { methods: {
faceURL(character, thumbnail = false) { faceURL(character, thumbnail = false) {
return `/img/${character}/` + (thumbnail ? "face_thumb" : "face") + ".webp"; return `/img/${character}/` + (thumbnail ? "face_thumb" : "face") + ".jpeg";
} }
} }
} }

View File

@@ -36,6 +36,7 @@
&, &:hover { &, &:hover {
color: $grey-10; color: $grey-10;
cursor: pointer; cursor: pointer;
text-decoration: none;
} }
} }
</style> </style>