aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-12-04 18:05:11 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-12-04 18:05:11 +0530
commitbb38d843de17bb0b206a663e008c5dbb37f04708 (patch)
tree3dd62fb8961d85a277fe5a882e8a41bc2c4d71dd /src/App.scss
parent9ca1864b79ede841e71836132effc2e260b4e758 (diff)
added (untested) auth mechanism
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss
index 23ee270..1b37ffe 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -60,3 +60,29 @@ $selectionColor: rgba($primaryAccentColor, 0.9)
color: $darkgray;
background: $selectionColor;
}
+
+.dropdown-icon {
+ transition: transform 0.4s;
+ &.open {
+ transform: rotate(-180deg);
+ }
+}
+
+.dropdown-div {
+ animation: dropdown ease 0.15s;
+}
+
+@keyframes dropdown {
+ 0% {
+ opacity: 0;
+ transform: translateY(-100%)
+ }
+ 50% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 100;
+ transform: translateY(0px)
+ }
+}
+