no padding on main body view

This commit is contained in:
Matthias 2020-09-12 16:34:19 +02:00
parent 081e7a273b
commit aeae12ff9d

View File

@ -1,5 +1,5 @@
<template> <template>
<main class="container-fluid h-100"> <main class="container-fluid h-100 container-main">
<BotAlerts /> <BotAlerts />
<router-view /> <router-view />
</main> </main>
@ -14,3 +14,8 @@ import BotAlerts from '@/components/ftbot/BotAlerts.vue';
}) })
export default class Body extends Vue {} export default class Body extends Vue {}
</script> </script>
<style lang="scss" scoped>
.container-main {
padding: 0;
}
</style>