diff options
Diffstat (limited to 'iridescence/src/views')
-rw-r--r-- | iridescence/src/views/Home.vue | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/iridescence/src/views/Home.vue b/iridescence/src/views/Home.vue index 9272d90..b01b78d 100644 --- a/iridescence/src/views/Home.vue +++ b/iridescence/src/views/Home.vue @@ -3,7 +3,7 @@ allow users to sort, filter, and search for items and add them to their cart. --> - <div id="home" class="container"> + <div id="home"> <div class="columns"> <div class="column is-narrow"> <section class="section"> @@ -14,12 +14,14 @@ </div> <div class="column"> - <section class="section"> - <InventorySearch></InventorySearch> - </section> - <section class="section"> - <InventoryList></InventoryList> - </section> + <div class="container"> + <section class="section"> + <InventorySearch></InventorySearch> + </section> + <section class="section"> + <InventoryList></InventoryList> + </section> + </div> </div> </div> </div> |