Skip to content

Commit

Permalink
Page for registering/creating board
Browse files Browse the repository at this point in the history
  • Loading branch information
gucci-ninja committed Jan 3, 2021
1 parent fe4308e commit 24d972d
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pages/create.vue
@@ -0,0 +1,48 @@
<template>
<div id="app">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap" rel="stylesheet">
<BoardForm/>

</div>
</template>

<script>
import BoardForm from '../components/BoardForm.vue';
export default {
name: 'App',
components: {
BoardForm
},
}
</script>

<style lang="scss" scoped>
body, html {
width: 100%;
min-height: 100vh;
background-color: black;
font-family: 'Quicksand', sans-serif;
text-align: center;
}
#app {
width: 100%;
min-height: 100vh;
background-color: #C7CEEA;
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
@media only screen and (min-width: 768px) {
#app {
/* margin-top: 60px; */
}
}
</style>

0 comments on commit 24d972d

Please sign in to comment.