Skip to content

Commit

Permalink
Merge pull request #416 from Ashutosh-1302/master
Browse files Browse the repository at this point in the history
Changed Display of notices back to yellow with adjusted blink time to assure readability
  • Loading branch information
Ashutosh-1302 authored Nov 28, 2023
2 parents ea74aec + 0f80bdf commit cb46c5e
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 cb46c5e

Please sign in to comment.