2 Commits

Author SHA1 Message Date
281614502e style: use default toastify css look for solver notifications
Some checks failed
Deploy to Production / deploy (push) Failing after 9s
2026-02-24 00:03:24 +00:00
4ab408b329 style: remove focus outline from solver dropdown buttons 2026-02-23 23:55:36 +00:00
2 changed files with 5 additions and 8 deletions

View File

@@ -197,4 +197,8 @@ onUnmounted(() => {
.dropdown-item:hover {
background: rgba(255, 255, 255, 0.1);
}
.dropdown-item:focus {
outline: none;
}
</style>

View File

@@ -764,14 +764,7 @@ const handleSolve = async (solverType) => {
duration: 3000,
gravity: "top",
position: "center",
style: {
background: "rgba(255, 255, 255, 0.1)",
color: "#fff",
backdropFilter: "blur(8px)",
borderRadius: "8px",
border: "1px solid rgba(255, 255, 255, 0.2)",
boxShadow: "0 4px 12px rgba(0, 0, 0, 0.5)",
},
stopOnFocus: true,
}).showToast();
return;
}