diff --git a/src/App.vue b/src/App.vue index b9af2e9..9b3594b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -203,6 +203,10 @@ body, #app { left: 60px; } + .close-btn-label-when-left-panel-open { + opacity: 0; + } + .vertical-panel-when-left-panel-open { position: fixed; width: 58px; @@ -260,6 +264,7 @@ body, #app { width: 192px; background-color: white; transition: margin-left linear .3s; + z-index: 100; } .left-panel-closed { diff --git a/src/store/albums/actions.ts b/src/store/albums/actions.ts index a73365c..8e9f8dd 100644 --- a/src/store/albums/actions.ts +++ b/src/store/albums/actions.ts @@ -12,7 +12,7 @@ export default class AlbumsActions extends Actions< AlbumsActions > { $init() { - axios.get('generated_albums_config.json') + axios.get('/generated_albums_config.json') .then(response => { setTimeout(() => this.commit('updateAlbums', response.data), 500); }).catch(error => console.log(error));