better position for the audio player

This commit is contained in:
Arjun Patel
2022-02-06 13:45:19 -08:00
parent c8ead36341
commit 03bfc09beb
2 changed files with 3 additions and 3 deletions
@@ -284,7 +284,7 @@ export default function AudioHandler() {
onPlay={(e) => console.log("onPlay")}
showSkipControls={true}
onEnded={onEndedPlaying}
className="w-screen flex flex-row"
className="w-screen flex flex-row fixed bottom-0"
/>
)}
+2 -2
View File
@@ -130,11 +130,11 @@ Me.getLayout = function (content: ReactElement) {
<KeyboardShortcutHandler />
<AudioHandler />
<Header />
{content}
<AudioHandler />
</div>
);
};