Fix blog banner layout (#2300)
* Fix blog banner layout * Fix banner stretching with no content
This commit is contained in:
parent
c501e0d301
commit
2340af09e2
|
@ -15,12 +15,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.banner {
|
.banner {
|
||||||
width: 85%;
|
margin: 16px auto 0 auto;
|
||||||
|
width: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flexBox {
|
.flexBox {
|
||||||
margin-top: 60px;
|
margin: 0;
|
||||||
margin-bottom: -75px;
|
flex: 1 1 0%;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
#changeLogText {
|
#changeLogText {
|
||||||
|
|
|
@ -9,10 +9,8 @@
|
||||||
>
|
>
|
||||||
<top-nav ref="topNav" />
|
<top-nav ref="topNav" />
|
||||||
<side-nav ref="sideNav" />
|
<side-nav ref="sideNav" />
|
||||||
<ft-flex-box
|
|
||||||
v-if="showUpdatesBanner || showBlogBanner"
|
<ft-flex-box class="flexBox">
|
||||||
class="flexBox routerView"
|
|
||||||
>
|
|
||||||
<ft-notification-banner
|
<ft-notification-banner
|
||||||
v-if="showUpdatesBanner"
|
v-if="showUpdatesBanner"
|
||||||
class="banner"
|
class="banner"
|
||||||
|
@ -25,19 +23,21 @@
|
||||||
:message="blogBannerMessage"
|
:message="blogBannerMessage"
|
||||||
@click="handleNewBlogBannerClick"
|
@click="handleNewBlogBannerClick"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<transition
|
||||||
|
v-if="dataReady"
|
||||||
|
mode="out-in"
|
||||||
|
name="fade"
|
||||||
|
>
|
||||||
|
<!-- <keep-alive> -->
|
||||||
|
<RouterView
|
||||||
|
ref="router"
|
||||||
|
class="routerView"
|
||||||
|
/>
|
||||||
|
<!-- </keep-alive> -->
|
||||||
|
</transition>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
<transition
|
|
||||||
v-if="dataReady"
|
|
||||||
mode="out-in"
|
|
||||||
name="fade"
|
|
||||||
>
|
|
||||||
<!-- <keep-alive> -->
|
|
||||||
<RouterView
|
|
||||||
ref="router"
|
|
||||||
class="routerView"
|
|
||||||
/>
|
|
||||||
<!-- </keep-alive> -->
|
|
||||||
</transition>
|
|
||||||
<ft-prompt
|
<ft-prompt
|
||||||
v-if="showReleaseNotes"
|
v-if="showReleaseNotes"
|
||||||
@click="showReleaseNotes = !showReleaseNotes"
|
@click="showReleaseNotes = !showReleaseNotes"
|
||||||
|
|
Loading…
Reference in New Issue