frequi_origin/src/App.vue

68 lines
949 B
Vue
Raw Normal View History

2020-05-04 04:31:12 +00:00
<template>
<div id="app">
<Header/>
2020-05-04 18:56:11 +00:00
<main class="container-fluid">
2020-05-12 05:13:49 +00:00
<div class="container">
<BotAlerts />
</div>
2020-05-06 05:09:27 +00:00
<router-view />
2020-05-04 05:20:02 +00:00
</main>
2020-05-04 04:31:12 +00:00
</div>
</template>
2020-05-06 19:24:12 +00:00
<script>
import BotAlerts from '@/components/ftbot/BotAlerts.vue';
2020-05-04 04:31:12 +00:00
2020-05-06 19:24:12 +00:00
export default {
components: { BotAlerts },
2020-05-06 19:24:12 +00:00
};
</script>
2020-05-06 05:09:27 +00:00
<style scoped>
2020-05-04 04:31:12 +00:00
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
2020-05-04 04:50:09 +00:00
}
2020-05-06 05:09:27 +00:00
.logo {
vertical-align: middle;
height: 30px;
}
.header-title {
margin-right: 2em;
}
#nav {
padding: 30px;
2020-05-04 04:50:09 +00:00
}
2020-05-06 05:09:27 +00:00
2020-05-04 04:50:09 +00:00
ul {
padding: 3px;
display: flex;
2020-05-06 05:09:27 +00:00
list-style-type: none;
2020-05-04 04:50:09 +00:00
}
2020-05-06 05:09:27 +00:00
li {
margin-right: 15px;
}
.router-link-active {
color: white;
2020-05-04 04:50:09 +00:00
}
2020-05-06 05:09:27 +00:00
nav a {
color: #ccc;
2020-05-04 04:31:12 +00:00
}
</style>
<style>
/* Global styles - populating to child elementes */
.card-header {
font-size: 1.3em;
}
2020-05-10 08:27:57 +00:00
.card-body {
overflow: auto;
}
</style>