Skip to content

Commit

Permalink
Merge branch 'FreeTubeApp:development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
MarmadileManteater authored Jul 7, 2022
2 parents af40801 + 2340af0 commit e93b1b4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 19 deletions.
8 changes: 5 additions & 3 deletions src/renderer/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
}

.banner {
width: 85%;
margin: 16px auto 0 auto;
width: 90%;
}

.flexBox {
margin-top: 60px;
margin-bottom: -75px;
margin: 0;
flex: 1 1 0%;
flex-direction: column;
}

#changeLogText {
Expand Down
32 changes: 16 additions & 16 deletions src/renderer/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@
>
<top-nav ref="topNav" />
<side-nav ref="sideNav" />
<ft-flex-box
v-if="showUpdatesBanner || showBlogBanner"
class="flexBox routerView"
>

<ft-flex-box class="flexBox">
<ft-notification-banner
v-if="showUpdatesBanner"
class="banner"
Expand All @@ -25,19 +23,21 @@
:message="blogBannerMessage"
@click="handleNewBlogBannerClick"
/>

<transition
v-if="dataReady"
mode="out-in"
name="fade"
>
<!-- <keep-alive> -->
<RouterView
ref="router"
class="routerView"
/>
<!-- </keep-alive> -->
</transition>
</ft-flex-box>
<transition
v-if="dataReady"
mode="out-in"
name="fade"
>
<!-- <keep-alive> -->
<RouterView
ref="router"
class="routerView"
/>
<!-- </keep-alive> -->
</transition>

<ft-prompt
v-if="showReleaseNotes"
@click="showReleaseNotes = !showReleaseNotes"
Expand Down

0 comments on commit e93b1b4

Please sign in to comment.