Skip to content

Commit

Permalink
Merge pull request #479 from ethereum/hide-banner-join-phase
Browse files Browse the repository at this point in the history
Blank banner during join phase
  • Loading branch information
samajammin authored Dec 15, 2021
2 parents 4e0a4e0 + f7774c8 commit e9df45f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion vue-app/src/views/JoinLanding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</div>
</div>

<round-status-banner />
<round-status-banner v-if="$store.state.currentRound" />
<back-link
:alsoShowOnMobile="true"
to="/projects"
Expand Down
2 changes: 1 addition & 1 deletion vue-app/src/views/Landing.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<round-status-banner />
<round-status-banner v-if="$store.state.currentRound" />
<div id="page">
<div id="hero">
<img src="@/assets/moon.png" id="moon" />
Expand Down
2 changes: 1 addition & 1 deletion vue-app/src/views/ProjectAdded.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<round-status-banner />
<round-status-banner v-if="$store.state.currentRound" />
<div class="gradient">
<img src="@/assets/moon.png" class="moon" />
<div class="hero">
Expand Down
2 changes: 1 addition & 1 deletion vue-app/src/views/Verified.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@ -0,0 +1,36 @@
<template>
<div>
<round-status-banner />
<round-status-banner v-if="$store.state.currentRound" />
<!-- TODO: add confetti -->
<div class="gradient">
<img src="@/assets/moon.png" class="moon" />
Expand Down
2 changes: 1 addition & 1 deletion vue-app/src/views/VerifyLanding.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@ -0,0 +1,36 @@
<template>
<div>
<round-status-banner />
<round-status-banner v-if="$store.state.currentRound" />
<loader v-if="loading" />
<div v-if="!loading">
<div class="gradient">
Expand Down

0 comments on commit e9df45f

Please sign in to comment.