mirror of https://github.com/Kylart/KawAnime.git
Reset height of config modal.
Added bg picture for index.html.
This commit is contained in:
parent
c5abb5dcbd
commit
56b2f447ab
|
@ -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;
|
||||
}
|
|
@ -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))
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 287 KiB |
Binary file not shown.
After Width: | Height: | Size: 103 KiB |
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue