Reset height of config modal.

Added bg picture for index.html.
This commit is contained in:
Kylart 2017-04-21 00:18:50 +02:00
parent c5abb5dcbd
commit 56b2f447ab
5 changed files with 6 additions and 7 deletions

View File

@ -1,8 +1,10 @@
.page-enter-active, .page-leave-active {
.page-enter-active, .page-leave-active
{
transition: opacity .5s;
}
.page-enter, .page-leave-active {
.page-enter, .page-leave-active
{
opacity: 0;
}
@ -18,6 +20,5 @@
.config-modal .modal
{
min-height: 90%;
max-height: 100%;
max-height: 738px;
}

View File

@ -10,7 +10,6 @@ exports.getLists = (url, res) => {
const wlFile = require(join(userInfo().homedir, '.KawAnime', 'lists.json'))
console.log(`[WatchList] Gathered lists from local.`)
console.log(wlFile)
res.writeHead(200, {"Content-Type": "application/json"})
res.write(JSON.stringify(wlFile))

BIN
static/images/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 KiB

BIN
static/images/index-bg.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

View File

@ -163,8 +163,7 @@ const store = new Vuex.Store({
const {data} = await axios.get(`watchList.json?`)
console.log('Received watch list')
console.log(data)
console.log(`[${(new Date()).toLocaleTimeString()}]: Received watch lists.`)
commit('setWatchList', data.watchList)
commit('setSeen', data.seen)