summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Navbar/style/NavbarDesktop.module.css
blob: 9cddb127ce0b3e9e4b61d8f3d2a53d83e3bd23fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* navbarDesktop.module.css */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.blink {
  animation: blink 0.8s infinite;
}