fix: svg focus outline

This commit is contained in:
Tristan Yang
2023-03-31 21:30:44 +08:00
parent 949ccb33aa
commit 32bdef4e0d
2 changed files with 6 additions and 9 deletions
-9
View File
@@ -142,15 +142,6 @@
body.iframe .guest-container .right-container {
border-radius: 0;
}
a {
text-decoration: none;
color: inherit;
}
button {
cursor: pointer;
}
</style>
<body>
+6
View File
@@ -294,3 +294,9 @@ html.dark .slate-Combobox {
html.dark .slate-Combobox li:hover {
background: #333 !important;
}
/* remove focus border */
svg:focus {
border: none;
outline: none;
}