summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Navbar/style/NavbarDesktop.module.css
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2024-07-17 08:29:45 +0000
committerIT Fixcomart <it@fixcomart.co.id>2024-07-17 08:29:45 +0000
commit1750dfecfc0090df4c8165f7c45f31882f850160 (patch)
tree51e77087659e696dccb559767afe25429a5c645f /src/core/components/elements/Navbar/style/NavbarDesktop.module.css
parent4d7c1a759b60fbe79bd0ae37f6133accf47e2ca0 (diff)
parent30142ab6c6f37fb381264efd0dc94aa997b1a278 (diff)
Merged in Feature/all-promotion (pull request #169)
Feature/all promotion
Diffstat (limited to 'src/core/components/elements/Navbar/style/NavbarDesktop.module.css')
-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;
+}
+