Skip to content

Commit

Permalink
updated for pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Exilliar committed Aug 9, 2023
1 parent 2ff0d5a commit d53e534
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions src/components/assessment/NoStreams.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
<template>
<v-container class="text-center">
<p>You have not been assigned to any streams.</p>
<p>
Please go to your selected server,
<a :href="serverUrl" target="_blank">{{ serverUrl }}</a>
, and either create a new stream or be added to an existing stream.
</p>
<p>
More info on how to use Speckle can be found at the
<a :href="SpeckleDocsUrl" target="_blank">Speckle docs</a>.
</p>
</v-container>
<div class="d-flex justify-center align-center" style="height: 70vh">
<v-card width="50%" class="text-center">
<v-card-text class="white--text">
<p>You have not been assigned to any streams.</p>
<p>
Please go to your selected server,
<a :href="serverUrl" target="_blank">{{ serverUrl }}</a>
, and either create a new stream or be added to an existing one.
</p>
<p>
For more information on how to use Speckle, please visit the
<a :href="SpeckleDocsUrl" target="_blank">Speckle docs</a>.
</p>
</v-card-text>
</v-card>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop } from "vue-property-decorator";
Expand Down

0 comments on commit d53e534

Please sign in to comment.