Skip to content

Commit

Permalink
Banner added to top instead of bottom of page
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette committed Oct 30, 2023
1 parent 50534a1 commit 438dfda
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions dwds/debug_extension_mv3/web/static_assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ h6 {
}

.snackbar {
bottom: 0px;
top: 0px;
color: #eeeeee;
font-family: Roboto, 'Helvetica Neue', sans-serif;
left: 0px;
Expand All @@ -85,7 +85,7 @@ h6 {
text-align: center;
visibility: hidden;
width: 100%;
z-index: 1;
z-index: 2147483647;
}

.snackbar > a {
Expand Down Expand Up @@ -113,44 +113,44 @@ h6 {

@-webkit-keyframes fadein {
from {
bottom: 0;
top: 0;
opacity: 0;
}
to {
bottom: 0px;
top: 0px;
opacity: 1;
}
}

@keyframes fadein {
from {
bottom: 0;
top: 0;
opacity: 0;
}
to {
bottom: 0px;
top: 0px;
opacity: 1;
}
}

@-webkit-keyframes fadeout {
from {
bottom: 0px;
top: 0px;
opacity: 1;
}
to {
bottom: 0;
top: 0;
opacity: 0;
}
}

@keyframes fadeout {
from {
bottom: 0px;
top: 0px;
opacity: 1;
}
to {
bottom: 0;
top: 0;
opacity: 0;
}
}

0 comments on commit 438dfda

Please sign in to comment.