Skip to content

Commit

Permalink
fix #1472
Browse files Browse the repository at this point in the history
  • Loading branch information
bassemmagdy committed May 27, 2021
1 parent 8e0ba10 commit e5598d6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/components/AccountLinks/AccountLinks.less
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
color: @purpleDark;
display: flex;
align-items: center;
z-index: 11;
}

.navbar-icon {
Expand Down
1 change: 1 addition & 0 deletions src/components/QRCode/ImportQRButton/ImportQRButton.less
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
.trigger-importqr {
color: @blackLight;
font-size: @normalFont !important;
z-index: 11;

span {
font-size: @normalFont !important;
Expand Down
4 changes: 2 additions & 2 deletions src/views/layout/PageLayout/PageLayout.less
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
.alert {
margin-left: 50%;
left: -380px;
top: 10px;
top: 0;
position: absolute;
z-index: 999999999;
z-index: 10;
min-width: 765px;
font-size: 16px;
line-height: 40px;
Expand Down
2 changes: 1 addition & 1 deletion src/views/layout/PageLayout/PageLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Alert class="alert warning_alert" type="error">
<Icon type="ios-warning-outline" />
{{ $t(`${alert.message}`) }}
<a v-if="alert.showRetry" @click="reconnect">{{ $t('click_to_retry') }}</a>
<a v-if="alert.showRetry" @click="reconnect">{{ ` ${'(' + $t('click_to_retry') + ')'}` }}</a>
</Alert>
</div>
<div v-else-if="info.show">
Expand Down

0 comments on commit e5598d6

Please sign in to comment.