63 lines
1.4 KiB
Vue
63 lines
1.4 KiB
Vue
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
<template>
|
||
|
<div class="empty-state">
|
||
|
<div class="empty-state__wrap">
|
||
|
<h1>Select or create your project</h1>
|
||
|
<p></p>
|
||
|
<img src="../../../static/images/projectDetails/emptyState.svg" alt="">
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { Component, Vue } from 'vue-property-decorator';
|
||
|
|
||
|
@Component({})
|
||
|
|
||
|
export default class EmptyStateProjectArea extends Vue {}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.empty-state {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
margin-top: 120px;
|
||
|
|
||
|
&__wrap {
|
||
|
text-align: center;
|
||
|
|
||
|
h1 {
|
||
|
font-family: 'montserrat_bold';
|
||
|
font-size: 32px;
|
||
|
line-height: 35px;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-family: 'montserrat_regular';
|
||
|
font-size: 16px;
|
||
|
line-height: 21px;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
margin-top: 42px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 14400px) {
|
||
|
.empty-state {
|
||
|
margin-top: 60px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 1280px) {
|
||
|
.empty-state {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|