diff --git a/frontend/src/components/Details/BackgroundHeader.vue b/frontend/src/components/Details/BackgroundHeader.vue index 372a31aa6..a16db42c5 100644 --- a/frontend/src/components/Details/BackgroundHeader.vue +++ b/frontend/src/components/Details/BackgroundHeader.vue @@ -23,12 +23,12 @@ const style = reactive({ height: "330px", "-webkit-filter": "blur(3px)", filter: "blur(3px)", - transform: "scale(7)", + transform: "scale(8)", }); diff --git a/frontend/src/components/Details/DetailsInfo.vue b/frontend/src/components/Details/DetailsInfo.vue index 4acbbd2fc..55fc801fb 100644 --- a/frontend/src/components/Details/DetailsInfo.vue +++ b/frontend/src/components/Details/DetailsInfo.vue @@ -62,13 +62,27 @@ const downloadStore = storeDownload(); Tags - - - {{ tag }} - - + + {{ tag }} + + + + Genres + + + + {{ tag }} + + + +

{{ rom.summary }}

diff --git a/frontend/src/components/Details/Title.vue b/frontend/src/components/Details/Title.vue index 74caab53c..c24822624 100644 --- a/frontend/src/components/Details/Title.vue +++ b/frontend/src/components/Details/Title.vue @@ -2,21 +2,23 @@ import PlatformIcon from "@/components/Platform/PlatformIcon.vue"; import { regionToEmoji, languageToEmoji } from "@/utils"; import type { RomSchema, PlatformSchema } from "@/__generated__/" +import { useDisplay } from "vuetify"; defineProps<{ rom: RomSchema, platform: PlatformSchema }>(); +const { smAndDown } = useDisplay(); @@ -206,15 +212,20 @@ watch( } .cover-lg { margin-top: -230px; - margin-left: 110px; -} -.cover-xs { - margin-top: -280px; } .title-lg { margin-top: -190px; } +.cover-xs { + margin-top: -280px; +} .info-xs { margin-top: 60px; } +.extra-info { + margin-top: -230px; + z-index: 0; +} +.extra-info-xs { +}