Skip to content

Commit

Permalink
Move notification tray out of ff-view
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Jul 23, 2024
1 parent a934275 commit 4604b4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion frontend/src/components/drawers/RightDrawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export default {
position: absolute;
border-left: 1px solid $ff-grey-300;
background: white;
height: 100%;
height: calc(100% - 60px);
top: 60px;
right: -1000px;
z-index: 500;
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/layouts/Platform.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</div>
<div class="ff-view">
<div id="platform-banner" />
<RightDrawer />
<slot />
</div>
<RightDrawer />
<TransitionGroup class="ff-notifications" name="notifications-list" tag="div">
<ff-notification-toast
v-for="(a, $index) in alertsReversed" :key="a.timestamp"
Expand Down

0 comments on commit 4604b4a

Please sign in to comment.