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

github.com/alex-shpak/hugo-book.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxhdix <xhdix@yahoo.com>2021-06-08 11:08:46 +0300
committerGitHub <noreply@github.com>2021-06-08 11:08:46 +0300
commit379e311d7e38b7cb5b39acc53c87aa65ff92d471 (patch)
tree2cc909befcc3eeaf8960a7f2d650b472c700739b
parent4540d66e3baea28c1707d9dad84b3a038b32c919 (diff)
Fix menu not working in RTL menu (#349)
-rw-r--r--assets/_main.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/_main.scss b/assets/_main.scss
index 2af7752..09c4f91 100644
--- a/assets/_main.scss
+++ b/assets/_main.scss
@@ -382,7 +382,7 @@ ul.pagination {
}
//for RTL support
- body[dir="rtl"] #menu-control:checked + main {
+ body[dir="rtl"] #menu-control:checked ~ main {
.book-menu .book-menu-content {
transform: translateX(-$menu-width);
}