Skip to content

Commit 982221d

Browse files
authored
Merge pull request #824 from liquality/feat/whats_new_model_updated
feat: whats new model update
2 parents c53ec2d + c54417b commit 982221d

File tree

3 files changed

+156
-133
lines changed

3 files changed

+156
-133
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@liquality/hw-web-bridge": "^0.1.2",
3131
"@liquality/terra-networks": "^1.13.12",
3232
"@liquality/types": "^1.13.12",
33-
"@liquality/wallet-core": "1.16.0",
33+
"@liquality/wallet-core": "1.17.1",
3434
"@terra-money/terra.js": "^3.0.8",
3535
"@testing-library/vue": "^5.8.2",
3636
"amplitude-js": "8.17.0",

src/components/WhatsNewModal.vue

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
<template #header>
44
<h6>What's New</h6>
55
</template>
6+
<template>
7+
<div class="items">
8+
<div class="item">
9+
<div class="item-icon">
10+
<ChartIcon />
11+
</div>
12+
<div class="item-content">
13+
<pre class="text-wrap">* Improved Error Messaging - Minor Bug Fixes</pre>
14+
</div>
15+
</div>
16+
</div>
17+
</template>
18+
<template>
19+
<h6 class="subHeader">Did you know you can…</h6>
20+
</template>
621
<template>
722
<div class="items">
823
<div class="item">
@@ -12,7 +27,6 @@
1227
<div class="item-content">
1328
<pre class="text-wrap">* Connect your wallet to view your NFTs on OpenSEA</pre>
1429
<pre class="text-wrap">* Bridge with the Hop protocol</pre>
15-
<pre class="text-wrap">* Improved Error Messaging - Minor Bug Fixes</pre>
1630
</div>
1731
</div>
1832
</div>
@@ -25,7 +39,6 @@
2539
</template>
2640
</Modal>
2741
</template>
28-
2942
<script>
3043
import Modal from '@/components/Modal'
3144
import ChartIcon from '@/assets/icons/chart_icon.svg'
@@ -72,6 +85,10 @@ h6 {
7285
text-transform: uppercase;
7386
}
7487
88+
.subHeader {
89+
padding-left: 20px;
90+
}
91+
7592
.items {
7693
overflow-y: auto;
7794
display: flex;
@@ -114,4 +131,10 @@ h6 {
114131
margin-top: 20px;
115132
}
116133
}
134+
135+
.header {
136+
display: flex;
137+
width: 100%;
138+
align-items: center;
139+
}
117140
</style>

0 commit comments

Comments
 (0)