summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Navbar/style
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/components/elements/Navbar/style')
-rw-r--r--src/core/components/elements/Navbar/style/NavbarDesktop.module.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/components/elements/Navbar/style/NavbarDesktop.module.css b/src/core/components/elements/Navbar/style/NavbarDesktop.module.css
new file mode 100644
index 00000000..9cddb127
--- /dev/null
+++ b/src/core/components/elements/Navbar/style/NavbarDesktop.module.css
@@ -0,0 +1,14 @@
+/* navbarDesktop.module.css */
+@keyframes blink {
+ 0%, 100% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0;
+ }
+}
+
+.blink {
+ animation: blink 0.8s infinite;
+}
+