brotherton-erpnext/erpnext/public/js/education/lms/lmsRoot.vue

46 lines
917 B
Vue
Raw Normal View History

2018-10-30 12:55:49 +00:00
<template>
2018-11-13 11:32:42 +00:00
<div id="lms-root">
2019-03-28 10:03:08 +00:00
<navbar></navbar>
<main class="container my-5">
<div class="page_content">
<router-view :key="$route.fullPath"></router-view>
</div>
</main>
2018-10-30 12:55:49 +00:00
</div>
</template>
<script>
2018-12-10 13:05:27 +00:00
import Navbar from "./components/Navbar.vue"
2018-10-30 12:55:49 +00:00
export default {
2018-11-21 09:51:57 +00:00
name: "lmsRoot",
2018-12-10 13:05:27 +00:00
components: {
Navbar
}
2018-10-30 12:55:49 +00:00
};
2018-12-10 13:05:27 +00:00
</script>
2019-04-22 12:22:48 +00:00
<style>
div.card-hero-img {
height: 220px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: rgb(250, 251, 252);
}
.card-image-wrapper {
display: flex;
overflow: hidden;
height: 220px;
background-color: rgb(250, 251, 252);
justify-content: center;
}
.image-body {
align-self: center;
color: #d1d8dd;
font-size: 24px;
font-weight: 600;
line-height: 1;
padding: 20px;
}
</style>