Commit 714b898c2c7d7a9001025edc69ed516c7e2592e1
1 parent
9ce123f8
chore(style): remove outline for plugin
Showing
1 changed file
with
5 additions
and
17 deletions
front-end/h5/src/App.vue
| 1 | <template> | 1 | <template> |
| 2 | <div id="app"> | 2 | <div id="app"> |
| 3 | - <div id="nav"> | 3 | + <!-- <div id="nav"> |
| 4 | <router-link to="/">Home</router-link> | | 4 | <router-link to="/">Home</router-link> | |
| 5 | <router-link to="/about">About</router-link> | 5 | <router-link to="/about">About</router-link> |
| 6 | - </div> | 6 | + </div> --> |
| 7 | <router-view/> | 7 | <router-view/> |
| 8 | </div> | 8 | </div> |
| 9 | </template> | 9 | </template> |
| 10 | 10 | ||
| 11 | <style lang="scss"> | 11 | <style lang="scss"> |
| 12 | -#app { | ||
| 13 | - font-family: 'Avenir', Helvetica, Arial, sans-serif; | ||
| 14 | - -webkit-font-smoothing: antialiased; | ||
| 15 | - -moz-osx-font-smoothing: grayscale; | ||
| 16 | - text-align: center; | ||
| 17 | - color: #2c3e50; | ||
| 18 | -} | ||
| 19 | -#nav { | ||
| 20 | - padding: 30px; | ||
| 21 | - a { | ||
| 22 | - font-weight: bold; | ||
| 23 | - color: #2c3e50; | ||
| 24 | - &.router-link-exact-active { | ||
| 25 | - color: #42b983; | ||
| 26 | - } | 12 | +* { |
| 13 | + &:focus { | ||
| 14 | + outline: none; | ||
| 27 | } | 15 | } |
| 28 | } | 16 | } |
| 29 | </style> | 17 | </style> |