forked from AkkomaGang/akkoma-fe
add 3rd column for testing
This commit is contained in:
parent
6a77b27a42
commit
ee67b579c5
1 changed files with 14 additions and 1 deletions
15
src/App.vue
15
src/App.vue
|
@ -95,7 +95,6 @@
|
|||
<instance-specific-panel v-if="showInstanceSpecificPanel" />
|
||||
<features-panel v-if="!currentUser && showFeaturesPanel" />
|
||||
<who-to-follow-panel v-if="currentUser && suggestionsEnabled" />
|
||||
<notifications v-if="currentUser" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -115,6 +114,20 @@
|
|||
</div>
|
||||
<router-view />
|
||||
</div>
|
||||
<div
|
||||
class="sidebar-flexer mobile-hidden"
|
||||
:style="sidebarAlign"
|
||||
>
|
||||
<div class="sidebar-bounds">
|
||||
<div class="sidebar-scroller">
|
||||
<div class="sidebar">
|
||||
<div v-if="!isMobileLayout">
|
||||
<notifications v-if="currentUser" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<media-modal />
|
||||
</div>
|
||||
<chat-panel
|
||||
|
|
Loading…
Reference in a new issue