style(admin): unify button styles for edit, delete, and cancel

This commit is contained in:
Hördle Bot
2025-11-23 02:13:11 +01:00
parent e9526918e1
commit 5fb450d37e

View File

@@ -284,6 +284,34 @@ body {
background: #333;
}
.btn-secondary {
background: #4b5563;
color: #fff;
padding: 0.5rem 1rem;
border: none;
border-radius: 0.25rem;
cursor: pointer;
font-weight: 500;
}
.btn-secondary:hover {
background: #374151;
}
.btn-danger {
background: #ef4444;
color: #fff;
padding: 0.5rem 1rem;
border: none;
border-radius: 0.25rem;
cursor: pointer;
font-weight: 500;
}
.btn-danger:hover {
background: #dc2626;
}
/* Footer */
.app-footer {
margin-top: auto;