Fix for banner and too far scrolling (#2399)
* Fix for banner and too far scrolling * Update App.css
This commit is contained in:
		
							parent
							
								
									e489825a4a
								
							
						
					
					
						commit
						f7b9c5acca
					
				| 
						 | 
					@ -7,6 +7,7 @@
 | 
				
			||||||
  display: flex;
 | 
					  display: flex;
 | 
				
			||||||
  flex-wrap: wrap;
 | 
					  flex-wrap: wrap;
 | 
				
			||||||
  font-family: 'Roboto', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
 | 
					  font-family: 'Roboto', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
 | 
				
			||||||
 | 
					  height: 100%;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.routerView {
 | 
					.routerView {
 | 
				
			||||||
| 
						 | 
					@ -15,14 +16,13 @@
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.banner {
 | 
					.banner {
 | 
				
			||||||
  margin: 16px auto 0 auto;
 | 
					  width: 80%;
 | 
				
			||||||
  width: 90%;
 | 
					  margin: 0 auto;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.flexBox {
 | 
					.flexBox {
 | 
				
			||||||
  margin: 0;
 | 
					  margin-top: 60px;
 | 
				
			||||||
  flex: 1 1 0%;
 | 
					  display: block;
 | 
				
			||||||
  flex-direction: column;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#changeLogText {
 | 
					#changeLogText {
 | 
				
			||||||
| 
						 | 
					@ -44,7 +44,8 @@
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .banner {
 | 
					  .banner {
 | 
				
			||||||
    width: 90%;
 | 
					    width: 80%;
 | 
				
			||||||
 | 
					    margin-top: 60px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .flexBox {
 | 
					  .flexBox {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,8 +9,12 @@
 | 
				
			||||||
  >
 | 
					  >
 | 
				
			||||||
    <top-nav ref="topNav" />
 | 
					    <top-nav ref="topNav" />
 | 
				
			||||||
    <side-nav ref="sideNav" />
 | 
					    <side-nav ref="sideNav" />
 | 
				
			||||||
 | 
					    <ft-flex-box
 | 
				
			||||||
    <ft-flex-box class="flexBox">
 | 
					      class="flexBox routerView"
 | 
				
			||||||
 | 
					    >
 | 
				
			||||||
 | 
					      <div
 | 
				
			||||||
 | 
					        v-if="showUpdatesBanner || showBlogBanner"
 | 
				
			||||||
 | 
					      >
 | 
				
			||||||
        <ft-notification-banner
 | 
					        <ft-notification-banner
 | 
				
			||||||
          v-if="showUpdatesBanner"
 | 
					          v-if="showUpdatesBanner"
 | 
				
			||||||
          class="banner"
 | 
					          class="banner"
 | 
				
			||||||
| 
						 | 
					@ -23,7 +27,7 @@
 | 
				
			||||||
          :message="blogBannerMessage"
 | 
					          :message="blogBannerMessage"
 | 
				
			||||||
          @click="handleNewBlogBannerClick"
 | 
					          @click="handleNewBlogBannerClick"
 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
      <transition
 | 
					      <transition
 | 
				
			||||||
        v-if="dataReady"
 | 
					        v-if="dataReady"
 | 
				
			||||||
        mode="out-in"
 | 
					        mode="out-in"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue