diff --git a/src/App.vue b/src/App.vue index c7f1192..b57cd6e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -10,12 +10,26 @@ v-if="show_theme_modal" @close="show_theme_modal = false" /> + +
+ +
- @@ -28,7 +42,8 @@ import "./js/prototypes.js"; // Import components -import ThemePicker from './components/modals/ThemeModal'; +import ThemePicker from './components/modals/ThemeModal.vue'; +import SiteInfo from './components/modals/SiteInfo.vue'; import LoginCard from './components/LoginView.vue'; import MainView from './components/MainView.vue'; import Icon from './components/Icon.vue'; @@ -40,9 +55,11 @@ export default { "MainView": MainView, "Themes": ThemePicker, "Icon": Icon, + "SiteInfo": SiteInfo, }, data() {return { - show_theme_modal: false + show_theme_modal: false, + show_site_info: false, }}, computed: { is_dev() { @@ -111,4 +128,14 @@ body { #theme-button > button { padding: 5px; } + +#info-button { + position: absolute; + display: block; + bottom: 5px; + left: 5px; +} +#info-button > button { + padding: 5px; +} \ No newline at end of file