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
path: root/assets
diff options
context:
space:
mode:
authorTina <feministclickback@mail36.net>2020-05-09 21:00:49 +0300
committerTina <feministclickback@mail36.net>2020-05-09 21:00:49 +0300
commitde303af180fcfd15b23c16889d61b947c9102166 (patch)
treed5b9564e17235e7a72e6ba01df4b866e03c8152d /assets
parentd3fe6dbda5f06a271d4808c66d4faf7de84b35ba (diff)
Integrate language switcher in header layout
This adds an additional CSS class to the header if Site.Params.Language Switcher.show is set to `true`, changing the CSS grid so it integrates the language switcher.
Diffstat (limited to 'assets')
-rw-r--r--assets/css/style.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index ab0802a..4755b21 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -587,7 +587,7 @@
/* LANGUAGE SWITCHER */
.LangNav {
display: flex;
- justify-content: flex-start;
+ justify-content: flex-end;
align-items: center;
margin: 1rem 4.5rem;
}
@@ -599,3 +599,7 @@
span.language.active {
opacity: 0.5;
}
+
+.header.has-LangNav {
+ grid-template-columns: auto 1fr auto;
+}