fix(mobile): remove all focus style for link and button (#8208)

This commit is contained in:
CatsJuice
2024-09-12 03:07:31 +00:00
parent ba81b1a9ca
commit 8bf0458ef4
3 changed files with 12 additions and 0 deletions
@@ -22,3 +22,10 @@ globalStyle('html', {
overflowY: 'auto',
background: cssVarV2('layer/background/secondary'),
});
globalStyle('a:focus', {
outline: 'none',
});
globalStyle('button:focus', {
outline: 'none',
});