[+] Create course selection page

This commit is contained in:
Hykilpikonna
2020-04-11 18:59:29 -04:00
parent 852d016203
commit a137466ed1
@@ -0,0 +1,42 @@
<template>
<div id="course-selection">
<el-card id="info">
<div class="header">Course Selection</div>
<div class="content">
This new page is designed to help you with your course selection next year,
providing more information such as how many people are currently enrolled in a course.
</div>
</el-card>
</div>
</template>
<script lang="ts">
import {Component, Vue} from 'vue-property-decorator'
@Component
export default class CourseSelection extends Vue
{
}
</script>
<style lang="scss" scoped>
#info
{
margin: 20px;
.header
{
margin-top: 15px;
margin-bottom: 10px;
font-size: 30px;
color: #8c85ea;
}
.content
{
margin-bottom: 15px;
}
}
</style>