sorta fixed but may be out of time

This commit is contained in:
2026-01-29 06:33:43 -08:00
parent a731f49b87
commit 18255812ba
+29
View File
@@ -111,3 +111,32 @@ dialog::backdrop {
.photo img:hover {
transform: scale(1.05);
}
.buttons {
display: flex;
justify-content: center; /* center buttons horizontally */
gap: 16px; /* space between buttons */
margin-top: 16px; /* optional spacing from other elements */
}
.buttons button {
flex: 0 0 auto; /* dont stretch buttons */
}
button.yes {
background-color: #531300; /* red-ish for yes */
color: #fff;
}
button.yes:hover {
background-color: #7a1a00; /* slightly lighter red on hover */
}
button.no {
background-color: #3d3d3d; /* dark gray for no */
color: #fff;
}
button.no:hover {
background-color: #555555; /* lighter gray on hover */
}