mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-15 23:10:48 +00:00
fix: appheader and panorama not showing on setup (#136)
This commit is contained in:
@@ -325,6 +325,23 @@ export default function App() {
|
||||
<div
|
||||
className={`w-screen h-screen overflow-hidden select-none flex flex-col relative bg-black text-white font-['Mojangles'] outline-none focus:outline-none ${!config.animationsEnabled ? "no-animations" : ""}`}
|
||||
>
|
||||
{showHeader && (
|
||||
<AppHeader playPressSound={audio.playPressSound} uiFade={uiFade} />
|
||||
)}
|
||||
<div className="absolute inset-0">
|
||||
<AnimatePresence>
|
||||
<motion.div
|
||||
key={displayIsDay ? "day" : "night"}
|
||||
className="absolute inset-0"
|
||||
{...backgroundFade}
|
||||
>
|
||||
<PanoramaBackground
|
||||
profile={selectedEdition?.panorama ?? "vanilla_tu19"}
|
||||
isDay={displayIsDay}
|
||||
/>
|
||||
</motion.div>
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
<SetupView
|
||||
onComplete={() => {
|
||||
setShowSetup(false);
|
||||
|
||||
Reference in New Issue
Block a user