Skip to content

Commit

Permalink
Changed Display of notices back to yellow with adjusted blink time to…
Browse files Browse the repository at this point in the history
… assure readabliity
  • Loading branch information
Ashutosh-1302 committed Nov 28, 2023
1 parent ea74aec commit 0f80bdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/home/notice.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ const blinkAnimation = keyframes`
color: #941B0C;
}
50% {
color:#140402 ;
color: #FFF700 ;
}
100% {
color: #941B0C;
}
`

const BlinkingText = styled.span`
animation: ${blinkAnimation} 0.8s linear infinite;
animation: ${blinkAnimation} 1.9s linear infinite;
`

const Notice = props => {
Expand Down

0 comments on commit 0f80bdf

Please sign in to comment.