2020-06-25 23:29:05 +02:00
|
|
|
<template>
|
|
|
|
<div id="app">
|
2020-06-26 00:23:11 +02:00
|
|
|
<ImageGrid />
|
2020-06-25 23:29:05 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-06-26 00:23:11 +02:00
|
|
|
import ImageGrid from './components/ImageGrid.vue'
|
2020-06-25 23:29:05 +02:00
|
|
|
|
|
|
|
export default {
|
2020-06-25 23:31:51 +02:00
|
|
|
name: 'App',
|
2020-06-25 23:29:05 +02:00
|
|
|
components: {
|
2020-06-26 00:23:11 +02:00
|
|
|
ImageGrid
|
2020-06-25 23:29:05 +02:00
|
|
|
}
|
2020-06-25 23:31:51 +02:00
|
|
|
}
|
2020-06-25 23:29:05 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2020-06-26 00:23:11 +02:00
|
|
|
@import '~normalize.css/normalize.css';
|
|
|
|
|
2020-06-25 23:29:05 +02:00
|
|
|
#app {
|
2020-06-26 00:23:11 +02:00
|
|
|
font-family: 'Lato', Avenir, Helvetica, Arial, sans-serif;
|
2020-06-25 23:29:05 +02:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2020-06-26 00:23:11 +02:00
|
|
|
padding: 50px;
|
2020-06-25 23:29:05 +02:00
|
|
|
}
|
|
|
|
</style>
|