Skip to content

Commit bcefd92

Browse files
committedSep 30, 2022
fix: swap notification arrow alignment
1 parent e53c161 commit bcefd92

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed
 

‎src/components/MewNotification/MewNotification.vue

+8-4
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,17 @@
104104
class="ml-1 detail-hash"
105105
/>
106106
</div>
107-
<div class="caption mew-heading-2">
108-
<div class="d-inline-block mr-1">
107+
<div class="caption mew-heading-2 d-flex align-center">
108+
<div class="mr-1 line-height-initial">
109109
{{ notification.fromObj.amount }}
110110
<span class="textPrimary--text">{{
111111
notification.fromObj.currency
112112
}}</span>
113113
</div>
114-
<v-icon class="subtitle-1 d-inline-block">
114+
<v-icon class="subtitle-1 mr-1">
115115
mdi-arrow-right
116116
</v-icon>
117-
<div class="d-inline-block mr-3">
117+
<div class="mr-3 line-height-initial">
118118
{{ notification.toObj.amount }}
119119
<span class="textPrimary--text">{{
120120
notification.toObj.currency
@@ -473,4 +473,8 @@ export default {
473473
left: 15px;
474474
}
475475
}
476+
477+
.line-height-initial {
478+
line-height: initial;
479+
}
476480
</style>