fix message styling issue

This commit is contained in:
2025-08-03 19:52:33 +02:00
parent 407abec1bf
commit 5ea702e7bb
+7 -6
View File
@@ -36,7 +36,7 @@ export default function Nominations() {
> >
NOMINATIES NOMINATIES
</h1> </h1>
<div className="mt-4 mb-12 flex flex-col items-center justify-between gap-4 rounded-md bg-blue-950/80 p-8"> <div className="relative mt-4 mb-12 flex flex-col items-center justify-between gap-4 rounded-md bg-blue-950/80 p-8">
<form className="flex flex-col items-center justify-center gap-4"> <form className="flex flex-col items-center justify-center gap-4">
<p className="text-2xl font-semibold text-white drop-shadow-sm drop-shadow-gray-900"> <p className="text-2xl font-semibold text-white drop-shadow-sm drop-shadow-gray-900">
Dump hier je Spotify-link: Dump hier je Spotify-link:
@@ -77,12 +77,13 @@ export default function Nominations() {
{isLoading ? "Nomineren..." : "Nomineer"} {isLoading ? "Nomineren..." : "Nomineer"}
</button> </button>
</form> </form>
{message && (
<div className="absolute top-50 mt-4 rounded bg-gray-800 p-3 text-center text-white">
{message}
</div>
)}
</div> </div>
{message && (
<div className="absolute bottom-118 mt-4 rounded bg-gray-800 p-3 text-center text-white">
{message}
</div>
)}
<footer> <footer>
<p>© 2020-2025 Hoestende Draken PartyCo</p> <p>© 2020-2025 Hoestende Draken PartyCo</p>
</footer> </footer>