Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIhor Sychevskyi <arhell333@gmail.com>2022-09-15 16:53:18 +0300
committerGitHub <noreply@github.com>2022-09-15 16:53:18 +0300
commitc5214bcbea1bf297f41bfee3b2aaf62da3c6ec87 (patch)
tree96fa1361ef90280410598a6e7e8ef53667ed7077
parent64883607d575921291ec09485dde77e61698d828 (diff)
update docs navigation arrow on hover (#1237)
-rw-r--r--assets/scss/_nav.scss6
1 files changed, 2 insertions, 4 deletions
diff --git a/assets/scss/_nav.scss b/assets/scss/_nav.scss
index 650e4ca..2b82c04 100644
--- a/assets/scss/_nav.scss
+++ b/assets/scss/_nav.scss
@@ -202,14 +202,12 @@ nav.foldable-nav {
.ul-1 .with-child > label:hover:before {
color: $primary;
- transform: rotate(30deg);
- transition: transform 0.5s;
+ transition: color 0.3s;
}
.ul-1 .with-child > input:checked ~ label:hover:before {
color: $primary;
- transform: rotate(60deg) !important;
- transition: transform 0.5s;
+ transition: color 0.3s;
}
}
}