From daa20754378fd56f2dd4910223b70080a267eb83 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Tue, 7 Aug 2018 10:40:22 -0400 Subject: [PATCH] Use `#app-root` instead of `#vue-root` so as to be more general --- js/index.js | 4 +--- styles/components/_global_layout.scss | 2 +- templates/base.html | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/js/index.js b/js/index.js index 1ec66270..72dbda3d 100644 --- a/js/index.js +++ b/js/index.js @@ -2,7 +2,7 @@ import classes from '../styles/atat.scss' import Vue from 'vue/dist/vue' const app = new Vue({ - el: '#vue-root', + el: '#app-root', methods: { closeModal: function(name) { this.modals[name] = false @@ -19,5 +19,3 @@ const app = new Vue({ } } }) - -console.log('hello from index') diff --git a/styles/components/_global_layout.scss b/styles/components/_global_layout.scss index d79890c5..47995964 100644 --- a/styles/components/_global_layout.scss +++ b/styles/components/_global_layout.scss @@ -1,4 +1,4 @@ -body { +#app-root { background-color: $color-gray-lightest; display: flex; flex-direction: column; diff --git a/templates/base.html b/templates/base.html index f7622db6..185cd205 100644 --- a/templates/base.html +++ b/templates/base.html @@ -15,7 +15,7 @@ -
+
{% block template_vars %}{% endblock %} {% include 'navigation/topbar.html' %}