2018-11-27 10:51:33 +00:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
<template>
|
2018-12-12 13:44:01 +00:00
|
|
|
<div id="app">
|
|
|
|
<router-view/>
|
|
|
|
<!-- Area for displaying notification -->
|
|
|
|
<NotificationArea />
|
|
|
|
</div>
|
2018-11-05 15:26:18 +00:00
|
|
|
</template>
|
|
|
|
|
2018-12-12 13:44:01 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
|
|
import NotificationArea from '@/components/notifications/NotificationArea.vue';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
components: {
|
|
|
|
NotificationArea
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
export default class App extends Vue {}
|
|
|
|
</script>
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
<style lang="scss">
|
|
|
|
|
|
|
|
@font-face {
|
2018-12-12 13:44:01 +00:00
|
|
|
font-family: "montserrat_regular";
|
|
|
|
src: url("../static/fonts/montserrat_regular.ttf");
|
2018-11-05 15:26:18 +00:00
|
|
|
}
|
|
|
|
@font-face {
|
2018-12-12 13:44:01 +00:00
|
|
|
font-family: "montserrat_medium";
|
|
|
|
src: url("../static/fonts/montserrat_medium.ttf");
|
2018-11-05 15:26:18 +00:00
|
|
|
}
|
|
|
|
@font-face {
|
2018-12-12 13:44:01 +00:00
|
|
|
font-family: "montserrat_bold";
|
|
|
|
src: url("../static/fonts/montserrat_bold.ttf");
|
2018-11-05 15:26:18 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 14:57:21 +00:00
|
|
|
a{
|
2018-12-12 13:44:01 +00:00
|
|
|
cursor: pointer;
|
2018-11-14 14:57:21 +00:00
|
|
|
}
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
input,
|
|
|
|
textarea {
|
2018-12-12 13:44:01 +00:00
|
|
|
font-family: inherit;
|
|
|
|
font-weight: 600;
|
|
|
|
border: 1px solid rgba(56, 75, 101, 0.4);
|
2018-11-05 15:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input:hover,
|
|
|
|
textarea:hover {
|
2018-12-12 13:44:01 +00:00
|
|
|
border-color: #737791 !important;
|
2018-11-05 15:26:18 +00:00
|
|
|
}
|
|
|
|
</style>
|