Skip to content

Commit

Permalink
Fix Chrome focus junk
Browse files Browse the repository at this point in the history
  • Loading branch information
YellowFish085 committed May 3, 2020
1 parent 2eb7939 commit 8fb0d9f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ export default class App extends Mixins(Vue, MixinChangeTheme) {
box-sizing: border-box;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
&:focus {
outline: none;
}
}
html {
Expand Down Expand Up @@ -330,13 +334,6 @@ body {
flex-direction: row;
}
input,
select {
&:focus {
outline: none;
}
}
h1, h2, h3 {
margin: 0;
}
Expand Down

0 comments on commit 8fb0d9f

Please sign in to comment.