diff --git a/website/client/public/static/npc/normal/pixel_border.png b/website/client/public/static/npc/normal/pixel_border.png
new file mode 100644
index 0000000000..8e873389ca
Binary files /dev/null and b/website/client/public/static/npc/normal/pixel_border.png differ
diff --git a/website/client/src/components/static/chatSunsetFaq.vue b/website/client/src/components/static/chatSunsetFaq.vue
index 20a81d411e..ff42ebfb5f 100644
--- a/website/client/src/components/static/chatSunsetFaq.vue
+++ b/website/client/src/components/static/chatSunsetFaq.vue
@@ -2,6 +2,7 @@
+
{{ $t('sunsetFaqTitle') }}
@@ -180,6 +181,8 @@
+
+
+
+
@@ -295,8 +300,14 @@
class="daniel_front"
:style="{'background-image': imageURLs.npc}"
>
+
+
+
{{ $t('anotherQuestion') }}
@@ -304,7 +315,7 @@
@@ -500,6 +511,15 @@
margin: 0 auto;
}
+ .pixel-border {
+ width: 330px;
+ height: 30px;
+ background-repeat: no-repeat;
+ position: absolute;
+ z-index: 0;
+ margin-top: -30px;
+ }
+
.question {
font-size: 0.875em;
font-weight: bold;
@@ -565,11 +585,13 @@ export default {
return {
background: 'url(/static/npc/normal/tavern_background.png)',
npc: 'url(/static/npc/normal/tavern_npc.png)',
+ pixel_border: 'url(/static/npc/normal/pixel_border.png)',
};
}
return {
background: `url(/static/npc/${currentEvent.season}/tavern_background.png)`,
npc: `url(/static/npc/${currentEvent.season}/tavern_npc.png)`,
+ pixel_border: 'url(/static/npc/normal/pixel_border.png)',
};
},
},