App.vue 592 Bytes
<template>
    <div class="vue-app-inner-view">
        <router-view></router-view>
    </div>
</template>

<script>
    export default {
        name: 'App'
    };
</script>

<style>
    .vue-app-container {
        overflow: auto;
    }

    .nav_menu {
        margin-bottom: 0;
    }

    .container, .main_container {
        height: 100%;
    }

    footer {
        display: none;
        bottom: 10px;
        right: 10px;
    }

    .vue-app-inner-view {
        padding: 0 10px 10px 10px;
        height: 100%;
        overflow: auto;
        box-sizing: border-box;
    }
</style>