diff --git a/app/app.vue b/app/app.vue
index 7731032..91e3e28 100644
--- a/app/app.vue
+++ b/app/app.vue
@@ -96,7 +96,7 @@ const setupGameHead = (data: GameDataValue) => {
const designTheme = data.design_theme === 1 ? 'light' : 'dark'
const styleLinks = createStyleLinks(
data.favicon_json,
- data?.game_font?.font_path
+ data?.game_font_key_json?.font_path
)
const styleCss = createStyleCss(data.key_color_json)
diff --git a/layers/assets/css/components/_splide.css b/layers/assets/css/components/_splide.css
index 1494a8a..8c1c71d 100644
--- a/layers/assets/css/components/_splide.css
+++ b/layers/assets/css/components/_splide.css
@@ -38,8 +38,4 @@
.type-full .splide__arrow--next {
@apply right-10;
}
-
- .splide-arrow svg {
- @apply hidden;
- }
}
diff --git a/layers/components/atoms/Button/Play.vue b/layers/components/atoms/Button/Play.vue
index 3c1ae77..eedc27d 100644
--- a/layers/components/atoms/Button/Play.vue
+++ b/layers/components/atoms/Button/Play.vue
@@ -2,6 +2,7 @@
import type { TrackingObject } from '#layers/types/api/common'
interface Props {
+ bgColor?: string
tracking: TrackingObject
}
@@ -16,14 +17,20 @@ const handlePlayClick = () => {
-