Fix CSS bug

This commit is contained in:
Ramon Wenger 2023-02-14 12:58:29 +01:00
parent b5ca5c377b
commit 81d19f0cac
1 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ export default {
methods: {
topicId(id) {
return atob(id);
return window.atob(id);
},
},
@ -59,7 +59,7 @@ export default {
@import '~styles/helpers';
.topic-navigation {
&__topic {
}
display: flex;
flex-direction: column;
}
</style>