-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
What: 1) Added aria attributes that were missing 2) Added new demo gif 3) Set getLocation to only happen on RegisterDialog Why: 1) Audit recommendation 2) Made current 3) Audit recommendation
- Loading branch information
1 parent
7ae7432
commit 8e4574f
Showing
7 changed files
with
80 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,46 @@ | ||
<template> | ||
<v-list | ||
v-bind:class="['info-list', { 'info-list--dark': dark }]" | ||
:dark="dark" | ||
> | ||
<v-card class="info-list__card"> | ||
<h2><i class="fas fa-user-plus"></i>Register for free</h2> | ||
<v-list v-bind:class="['info-list', { 'info-list--dark': dark }]" :dark="dark"> | ||
<v-card role="note" class="info-list__card"> | ||
<h2> | ||
<i class="fas fa-user-plus"></i>Register for free | ||
</h2> | ||
<p>Create an account for free today and start trading instantly.</p> | ||
</v-card> | ||
<v-card class="info-list__card"> | ||
<h2><i class="fa fa-chart-line"></i>Create a portfolio</h2> | ||
<v-card role="note" class="info-list__card"> | ||
<h2> | ||
<i class="fa fa-chart-line"></i>Create a portfolio | ||
</h2> | ||
<p>Create one or more portfolios to see what could have been.</p> | ||
</v-card> | ||
<v-card class="info-list__card"> | ||
<h2><i class="fas fa-balance-scale-left"></i>Trade assets</h2> | ||
<v-card role="note" class="info-list__card"> | ||
<h2> | ||
<i class="fas fa-balance-scale-left"></i>Trade assets | ||
</h2> | ||
<p> | ||
Choose from over a hundred stocks and cryptocurrencies. With more on the | ||
way! | ||
</p> | ||
</v-card> | ||
<v-card class="info-list__card"> | ||
<h2><i class="fas fa-trophy"></i>Compete with friends</h2> | ||
<p> | ||
Track your portfolios performance against others. | ||
</p> | ||
<v-card role="note" class="info-list__card"> | ||
<h2> | ||
<i class="fas fa-trophy"></i>Compete with friends | ||
</h2> | ||
<p>Track your portfolios performance against others.</p> | ||
</v-card> | ||
</v-list> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'InfoList', | ||
computed: { | ||
dark() { | ||
return this.$store.state.ui.dark; | ||
} | ||
export default { | ||
name: 'InfoList', | ||
computed: { | ||
dark() { | ||
return this.$store.state.ui.dark; | ||
} | ||
}; | ||
} | ||
}; | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
@import 'info_list'; | ||
@import 'info_list'; | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.