diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-06-09 21:54:13 -0700 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-06-09 21:55:29 -0700 |
commit | 9e4fe0d2274b00106e6a46a11242dcac1c10e8a1 (patch) | |
tree | bcabec9fcc38c063fb0c8de8dfb781463b95b7e0 /src/App.vue | |
parent | e9113b48cec284b041e4130e6afe932913f52d36 (diff) | |
download | homer-9e4fe0d2274b00106e6a46a11242dcac1c10e8a1.tar.gz homer-9e4fe0d2274b00106e6a46a11242dcac1c10e8a1.tar.zst homer-9e4fe0d2274b00106e6a46a11242dcac1c10e8a1.zip |
Customizable number of columns130585124
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue index 62156d2..17c3214 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -68,7 +68,7 @@ | |||
68 | v-for="item in group.items" | 68 | v-for="item in group.items" |
69 | :key="item.name" | 69 | :key="item.name" |
70 | v-bind:item="item" | 70 | v-bind:item="item" |
71 | class="column is-one-third-widescreen" | 71 | :class="['column', `is-${12 / config.columns}`]" |
72 | /> | 72 | /> |
73 | </template> | 73 | </template> |
74 | </div> | 74 | </div> |
@@ -79,7 +79,7 @@ | |||
79 | class="columns is-multiline layout-vertical" | 79 | class="columns is-multiline layout-vertical" |
80 | > | 80 | > |
81 | <div | 81 | <div |
82 | class="column is-one-third-widescreen" | 82 | :class="['column', `is-${12 / config.columns}`]" |
83 | v-for="group in services" | 83 | v-for="group in services" |
84 | :key="group.name" | 84 | :key="group.name" |
85 | > | 85 | > |