Add feature image grid

This commit is contained in:
2020-06-26 00:23:11 +02:00
parent 818382bd13
commit 66d4a53777
15 changed files with 186 additions and 214 deletions

View File

@ -1,28 +1,27 @@
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js App" />
<ImageGrid />
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
import ImageGrid from './components/ImageGrid.vue'
export default {
name: 'App',
components: {
HelloWorld
ImageGrid
}
}
</script>
<style lang="scss">
@import '~normalize.css/normalize.css';
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
font-family: 'Lato', Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
padding: 50px;
}
</style>