feat: Create portal UI improvements (#5261)

This commit is contained in:
Muhsin Keloth 2022-08-18 17:11:19 +05:30 committed by GitHub
parent ea918d9c5a
commit a788e7ac7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 629 additions and 57 deletions

View file

@ -2,7 +2,7 @@
<transition-group
name="wizard-items"
tag="div"
class="wizard-box flex-child-shrink"
class="wizard-box"
:class="classObject"
>
<div
@ -11,12 +11,14 @@
class="item"
:class="{ active: isActive(item), over: isOver(item) }"
>
<h3>
{{ item.title }}
<div class="flex-align-center">
<h3 class="text-truncate">
{{ item.title }}
</h3>
<span v-if="isOver(item)" class="completed">
<fluent-icon icon="checkmark" />
</span>
</h3>
</div>
<span class="step">
{{ items.indexOf(item) + 1 }}
</span>