Skip to content

Commit

Permalink
Update status block and shimmer
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgriv committed Jul 12, 2024
1 parent a120caa commit e4655a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ hr {
}

.status-tag {
background-color: #292929;
background-color: #007B88;
color: #FFFFFF;
border-radius: 12px;
padding: 10px;
Expand All @@ -89,7 +89,7 @@ hr {
}

.status-tag h2 {
color: #9354FF;
color: #FFFFFF;
margin: 0;
text-align: center; /* Center text inside the container */
}
Expand All @@ -109,13 +109,13 @@ hr {

@keyframes shimmer {
0% {
left: -100%;
left: -150%; /* Start further to the left */
}
50% {
left: 100%;
left: 150%; /* Move past the right end */
}
100% {
left: 100%;
left: 150%; /* Keep it moving */
}
}

Expand Down

0 comments on commit e4655a7

Please sign in to comment.