diff --git a/front/src/assets/main.scss b/front/src/assets/main.scss index dd9d8b5..6745ce2 100644 --- a/front/src/assets/main.scss +++ b/front/src/assets/main.scss @@ -28,11 +28,17 @@ a[href] { h1 { font-size: 4rem } + p { &:not(:last-child) { margin-bottom: 0.5rem; } } + + canvas { + height: 40vh; + width: 100vw; + } } @import 'sidebar.scss'; diff --git a/front/src/components/Main/index.vue b/front/src/components/Main/index.vue index a034613..715c094 100644 --- a/front/src/components/Main/index.vue +++ b/front/src/components/Main/index.vue @@ -1,17 +1,54 @@ \ No newline at end of file diff --git a/front/src/main.ts b/front/src/main.ts index 65c4ee3..dbf60d8 100644 --- a/front/src/main.ts +++ b/front/src/main.ts @@ -10,7 +10,7 @@ import Gallery from './components/Gallery/index.vue' import Promo from './components/Promo/index.vue' const routes = [ - { path: '/', component: Gallery, name: 'home_no' }, + { path: '/', component: Main, name: 'home_no' }, { path: '/:item', component: Main, name: 'main' }, { path: '/:item/gallery', component: Gallery, name: 'gallery' }, { path: '/:item/:target', component: Promo, name: 'scene' },