summaryrefslogtreecommitdiff
path: root/iridescence/src/App.vue
blob: debc59942cd83d742d91ba4424641c1e7b779c79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<template>
  <div id="app">
    <Navbar></Navbar>
    <BusyBar></BusyBar>
    <transition
      mode="out-in"
      enter-active-class="animate__animated animate__fadeInRight animate__faster"
      leave-active-class="animate__animated animate__fadeOutLeft animate__faster"
    >
      <router-view />
    </transition>
    <Footer></Footer>
  </div>
</template>

<script>
import BusyBar from "@/components/BusyBar.vue";
import Navbar from "@/components/Navbar.vue";
import Footer from "@/components/Footer.vue";

export default {
  name: "App",
  components: {
    BusyBar,
    Navbar,
    Footer
  }
};
</script>

<style lang="scss">
@charset "utf-8";
$modal-background-background-color: hsla(0, 0%, 4%, 0.2);
@import "../node_modules/bulma/bulma.sass";
</style>