[Style] Reorganize

This commit is contained in:
hyperbola
2021-01-19 19:26:33 +08:00
parent ffdf3df1dd
commit e427a878d9
15 changed files with 613 additions and 597 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div id="cfp" class="cfp cfp-background">
<!-- CfpHeader id="cfp-header"/ -->
<IntrodContainer></IntrodContainer>
<IntrodContainer id="cfp-intro"></IntrodContainer>
</div>
</template>

View File

@@ -1,17 +1,17 @@
<template>
<div class="news">
<NewsHeader id="news-header" />
<Schedule/>
<Agenda/>
<Schedule id="news-schedule"/>
<Agenda id="news-agenda"/>
<!-- <Footer></Footer> should be put at App.vue (?) -->
</div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import NewsHeader from '@/components/NewsHeader.vue';
import Schedule from '../components/CFP/Schedule.vue';
import Agenda from '../components/CFP/Agenda.vue';
import NewsHeader from '@/components/news/Header.vue';
import Schedule from '@/components/news/Schedule.vue';
import Agenda from '@/components/news/Agenda.vue';
@Component({
components: {
@@ -24,7 +24,3 @@ export default class News extends Vue {
@Prop() private msg!: string;
}
</script>
<style lang="scss">
@import '@/assets/scss/news'
</style>