This commit is contained in:
2020-10-03 15:18:29 +03:00
parent b7e4fc0bc4
commit f1045fa2f0
2 changed files with 6 additions and 1 deletions

View File

@@ -203,6 +203,10 @@ body, #app {
left: 60px; left: 60px;
} }
.close-btn-label-when-left-panel-open {
opacity: 0;
}
.vertical-panel-when-left-panel-open { .vertical-panel-when-left-panel-open {
position: fixed; position: fixed;
width: 58px; width: 58px;
@@ -260,6 +264,7 @@ body, #app {
width: 192px; width: 192px;
background-color: white; background-color: white;
transition: margin-left linear .3s; transition: margin-left linear .3s;
z-index: 100;
} }
.left-panel-closed { .left-panel-closed {

View File

@@ -12,7 +12,7 @@ export default class AlbumsActions extends Actions<
AlbumsActions AlbumsActions
> { > {
$init() { $init() {
axios.get('generated_albums_config.json') axios.get('/generated_albums_config.json')
.then(response => { .then(response => {
setTimeout(() => this.commit('updateAlbums', response.data), 500); setTimeout(() => this.commit('updateAlbums', response.data), 500);
}).catch(error => console.log(error)); }).catch(error => console.log(error));