Oprava zobrazení patičky
All checks were successful
ci/woodpecker/push/workflow Pipeline was successful

This commit is contained in:
2025-10-11 10:36:21 +02:00
parent 331a890cc5
commit fe7d609b5f
3 changed files with 24 additions and 3 deletions

View File

@@ -435,7 +435,7 @@ function App() {
const { path, url, startOffset, endOffset, duration, ...style } = easterEgg || {};
return (
<>
<div className="app-container">
{easterEgg && eggImage && <img ref={eggRef} alt='' src={URL.createObjectURL(eggImage)} style={{ position: 'absolute', ...EASTER_EGG_STYLE, ...style, animationDuration: `${duration ?? EASTER_EGG_DEFAULT_DURATION}s` }} />}
<Header />
<div className='wrapper'>
@@ -686,7 +686,7 @@ function App() {
</div>
<Footer />
<NoteModal isOpen={noteModalOpen} onClose={() => setNoteModalOpen(false)} onSave={saveNote} />
</>
</div>
);
}