-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hotfix: merge the hotfix to main (#1261)
* add zkEVM under maintenance banner (#1260) * Put back Yoki Origins banner (#1262) * feat: removed weETH and added DOT on zkEVM (#1264) * feat: added DOT token * feat: removed weETH --------- Co-authored-by: Bobo <[email protected]> Co-authored-by: Roy <[email protected]>
- Loading branch information
1 parent
4dc2fa8
commit 2367664
Showing
5 changed files
with
95 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<template> | ||
<div class="banner"> | ||
<span> | ||
<span class="text--attention">{{ $t('warning.attention') }}</span> | ||
<span>{{ $t('warning.zkevmUnderMaintenance') }}</span> | ||
</span> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { defineComponent } from 'vue'; | ||
export default defineComponent({ | ||
setup() { | ||
return {}; | ||
}, | ||
}); | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import 'src/css/quasar.variables.scss'; | ||
.banner { | ||
background-color: $border-yellow; | ||
color: $navy-2; | ||
font-weight: 600; | ||
padding: 4px 8px 8px 8px; | ||
font-size: 12px; | ||
position: relative; | ||
z-index: 2; | ||
display: flex; | ||
align-items: center; | ||
@media (min-width: $sm) { | ||
font-size: 14px; | ||
padding: 4px 16px 8px 16px; | ||
} | ||
} | ||
.text--attention { | ||
font-weight: 800; | ||
padding: 3px 9px; | ||
border-radius: 4px; | ||
border: 1px solid $navy-2; | ||
margin-right: 4px; | ||
@media (min-width: $sm) { | ||
margin-right: 8px; | ||
} | ||
} | ||
</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
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