Updated gitignore to ignore package-lock.json

This commit is contained in:
Kylart 2017-06-05 22:38:46 +02:00
parent 9e2e89aada
commit 76474ef538
2 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
# dependencies
node_modules
package-lock.json
# logs
npm-debug.log

View File

@ -4,8 +4,8 @@
top-toolbar left-sidebar>
<div style="height: 64px;"><!-- Spacer --></div>
<v-toolbar class="dragable" fixed>
<v-toolbar-side-icon class="non-dragable" @click.native.stop="sidebar = !sidebar"/>
<v-toolbar-logo class="text-xs-right title" v-bind:style="title">
<v-toolbar-side-icon class="non-dragable" v-bind:style="title" @click.native.stop="sidebar = !sidebar"/>
<v-toolbar-logo class="text-xs-right title">
<div style="width: 100%;">
<div class="title-text">かわニメ</div>
<settings></settings>
@ -67,7 +67,7 @@
</h1>
<div class="links">
<a href="https://github.com/Kylart/KawAnime" class="link">
<a href="https://github.com/Kylart/KawAnime" target="_blank" class="link">
<img src="~static/images/github-icon.png" height="25"/>
</a>
<a href="#" class="link">
@ -219,7 +219,7 @@
title: function () {
if (this.sidebar) {
return {
marginLeft: '210px'
marginLeft: '270px'
}
}
},