Make user panel and notification <aside>

このコミットが含まれているのは:
tusooa 2022-11-08 00:23:08 -05:00
コミット 771933183b
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 7B467EDE43A08224
3個のファイルの変更5行の追加5行の削除

ファイルの表示

@ -30,7 +30,7 @@
<instance-specific-panel v-if="showInstanceSpecificPanel" />
<features-panel v-if="!currentUser && showFeaturesPanel" />
<who-to-follow-panel v-if="currentUser && suggestionsEnabled" />
<div id="notifs-sidebar" />
<aside id="notifs-sidebar" />
</template>
</div>
<main

ファイルの表示

@ -42,7 +42,7 @@
</button>
</div>
</nav>
<div
<aside
v-if="currentUser"
class="mobile-notifications-drawer"
:class="{ '-closed': !notificationsOpen }"
@ -83,7 +83,7 @@
ref="mobileNotifications"
@scroll="onScroll"
/>
</div>
</aside>
<SideDrawer
ref="sideDrawer"
:logout="logout"

ファイルの表示

@ -1,5 +1,5 @@
<template>
<div class="user-panel">
<aside class="user-panel">
<div
v-if="signedIn"
key="user-panel-signed"
@ -16,7 +16,7 @@
v-else
key="user-panel"
/>
</div>
</aside>
</template>
<script src="./user_panel.js"></script>