Skip to content

Commit 1eff32f

Browse files
committed
added space at top for metabar
1 parent 9a5ec80 commit 1eff32f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/vuejs/App.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
<template>
3-
<div>
3+
<div class="container">
44
<div class="images">
55
<div class="image" v-for="image in loadedImages" :key="image.id">
66
<img :src="image.img" :alt="image.title" width="300" height="448"/>
@@ -77,6 +77,10 @@ export default Vue.extend({
7777
</script>
7878

7979
<style lang="scss" scoped>
80+
.container {
81+
margin-top: 48px;
82+
}
83+
8084
.images {
8185
margin: 0 auto;
8286
padding: 20px;

0 commit comments

Comments
 (0)