Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion src/views/Login/Login.scss
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,25 @@ html {
.selectMenu {
max-width: 230px;
min-width: 100px;
}
}

.deprecation-alert {
position: sticky;
top: 0;
z-index: 1000;
background-color: #e02424;
color: #fefefe;
padding: 8px;
font-size: 14px;
font-weight: 500;
width: 100%;
&--desktop {
position: absolute;
font-size: 16px;
}
&__text {
text-align: left;
margin: auto;
width: fit-content;
}
}
10 changes: 10 additions & 0 deletions src/views/Login/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@
:class="$vuetify.theme.dark ? 'torus-dark' : ''"
>
<div xs12 sm8 md6 style="max-width: 600px">
<div class="deprecation-alert" :class="{ 'deprecation-alert--desktop': $vuetify.breakpoint.smAndUp }">
<div class="deprecation-alert__text">
<i18n path="login.deprecationAlert" tag="p" class="mb-0">
<template #0><span class="font-weight-bold">July 31, 2025</span></template>
<template #1>
<a href="https://wallet.web3auth.io/" target="_blank" rel="noreferrer noopener" class="font-weight-bold white--text">Web3Auth</a>
</template>
</i18n>
</div>
</div>
<v-layout v-if="!isLogout" wrap>
<v-flex v-if="$vuetify.breakpoint.xsOnly" class="mobile-login-container" xs12>
<section class="py-10 py-sm-12">
Expand Down
Loading