Skip to content
This repository was archived by the owner on Jan 24, 2022. It is now read-only.

Commit c834f2f

Browse files
committed
Minor change - Adding CSS to make it look nicer. Adding an ESlint rule
1 parent c3d5a91 commit c834f2f

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
"plugin:vue/essential",
3636
"eslint:recommended"
3737
],
38-
"rules": {},
38+
"rules": {
39+
"no-console": "off"
40+
},
3941
"parserOptions": {
4042
"parser": "babel-eslint"
4143
}

src/App.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,13 @@
77
<router-view/>
88
</div>
99
</template>
10+
11+
<style>
12+
#app {
13+
font-family: 'Avenir', Helvetica, Arial, sans-serif;
14+
-webkit-font-smoothing: antialiased;
15+
-moz-osx-font-smoothing: grayscale;
16+
color: #2c3e50;
17+
margin-top: 60px;
18+
}
19+
</style>

0 commit comments

Comments
 (0)