🎨 Update button styles with new background and hover colors

This commit is contained in:
2026-01-28 19:54:26 +00:00
parent e2259e79f0
commit 49ce60ce80

View File

@@ -1146,8 +1146,8 @@ onMounted(() => {
.btn-retry { .btn-retry {
display: inline-block; display: inline-block;
padding: 0.75rem 1.5rem; padding: 0.75rem 1.5rem;
background: #3498db; background: #2980b9;
color: white; color: #ffffff;
text-decoration: none; text-decoration: none;
border: none; border: none;
border-radius: 8px; border-radius: 8px;
@@ -1158,6 +1158,6 @@ onMounted(() => {
.btn-primary:hover, .btn-primary:hover,
.btn-retry:hover { .btn-retry:hover {
background: #2980b9; background: #21618c;
} }
</style> </style>