fix: key text showing focus outline

fix: layout selectable
This commit is contained in:
2023-12-16 13:11:52 +01:00
parent ea3192d4e6
commit b679aa377a
5 changed files with 24 additions and 0 deletions

View File

@@ -56,6 +56,7 @@
text {
will-change: translate, scale;
user-select: none;
transform-origin: center;
transform-box: fill-box;
transition:
@@ -64,4 +65,8 @@
translate #{$transition} ease,
scale #{$transition} ease;
}
text:focus-within {
outline: none;
}
</style>