From 52552020cfe74ba20ba60e2fedf37633fdfd0528 Mon Sep 17 00:00:00 2001 From: Igor Date: Tue, 28 Jun 2022 10:01:54 +0300 Subject: [PATCH] fixed bug in the system ios --- _includes/tag.html | 2 +- assets/stylesheets/main.scss | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/_includes/tag.html b/_includes/tag.html index 12da94a..bbcf62d 100644 --- a/_includes/tag.html +++ b/_includes/tag.html @@ -1,4 +1,4 @@ {% include tag_format.html %}
-
{{ tag }}
+
{{ tag }}
diff --git a/assets/stylesheets/main.scss b/assets/stylesheets/main.scss index 209ffee..ed53fa1 100644 --- a/assets/stylesheets/main.scss +++ b/assets/stylesheets/main.scss @@ -597,10 +597,16 @@ pre { .hoverable-primary { transition: var(--default-transition-time); + .hoverable-primary::after { + opacity: 0; + } &:hover { background: var(--primary-color); color: #fff !important; + &::after { + opacity: 1; + } } }