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