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

github.com/danielkvist/hugo-terrassa-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTina <feministclickback@mail36.net>2020-05-09 21:12:53 +0300
committerTina <feministclickback@mail36.net>2020-05-09 21:12:53 +0300
commit685c359ff72fae6e2772333771a9e4692ac0c46a (patch)
tree8842a6d4796e445570424064390aa79d66f2f2b4
parent728786a69f6e85c4c3899030db1ca2bab8a68174 (diff)
Fixed position of hamburger menu between --sm and --md breakpoints
The hamburger menu toggle moves further to the right starting at the mobile breakpoint --sm (576px). Now that I added the language switcher, the breakpoint at which the toggle moves to the right needs to be soohner, at --md already (768px).
-rw-r--r--assets/css/style.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 4755b21..920795d 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -603,3 +603,9 @@ span.language.active {
.header.has-LangNav {
grid-template-columns: auto 1fr auto;
}
+
+@media (max-width:768px) {
+ .header.has-LangNav .hamburger-menu .toggle {
+ right: 1.75rem;
+ }
+}