2019-09-09 17:00:25 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div id="app">
|
|
|
|
<router-view/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
|
|
|
|
|
|
@Component
|
|
|
|
export default class App extends Vue {}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
body {
|
|
|
|
margin: 0 !important;
|
2019-10-28 13:19:57 +00:00
|
|
|
font-family: 'font_regular', sans-serif;
|
2019-09-09 17:00:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-display: swap;
|
2019-10-28 13:19:57 +00:00
|
|
|
font-family: 'font_regular';
|
|
|
|
src: url('../../static/fonts/font_regular.ttf');
|
2019-09-09 17:00:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-display: swap;
|
2019-10-28 13:19:57 +00:00
|
|
|
font-family: 'font_medium';
|
|
|
|
src: url('../../static/fonts/font_medium.ttf');
|
2019-09-09 17:00:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-display: swap;
|
2019-10-28 13:19:57 +00:00
|
|
|
font-family: 'font_bold';
|
|
|
|
src: url('../../static/fonts/font_bold.ttf');
|
2019-09-09 17:00:25 +01:00
|
|
|
}
|
|
|
|
</style>
|