Changed main app container class to not cascade to router-view content if it has a div with same class name.

This commit is contained in:
2020-01-24 14:23:32 +01:00
parent e2a2c5c32f
commit b362aba757

View File

@@ -1,5 +1,5 @@
<template> <template>
<div class="container"> <div class="app-container">
<banner /> <banner />
<router-view /> <router-view />
</div> </div>
@@ -45,7 +45,7 @@ body {
</style> </style>
<style scoped> <style scoped>
.container { .app-container {
background-color: white; background-color: white;
min-height: 100vh; min-height: 100vh;
} }