diff --git a/404.md b/404.md index 16c5633..243709a 100644 --- a/404.md +++ b/404.md @@ -3,7 +3,7 @@ title: Error 404 description: Oh no! This page doesn't exist! permalink: /404.html layout: default -collection: en-US +lang: en-US --- # Error! 404! diff --git a/_layouts/default.html b/_layouts/default.html index 077c028..a143b23 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,7 +3,7 @@ layout: compress --- - +
{% include head.html %} diff --git a/_layouts/redirect.html b/_layouts/redirect.html index 5a2a96f..248603c 100644 --- a/_layouts/redirect.html +++ b/_layouts/redirect.html @@ -3,7 +3,7 @@ layout: compress --- - + diff --git a/_layouts/wiki.html b/_layouts/wiki.html index fb34e44..e0c2f0e 100644 --- a/_layouts/wiki.html +++ b/_layouts/wiki.html @@ -3,7 +3,7 @@ layout: compress --- - + {% include head.html %} diff --git a/_sass/base.scss b/_sass/base.scss index 27b9ffa..88daebf 100644 --- a/_sass/base.scss +++ b/_sass/base.scss @@ -578,18 +578,28 @@ a.footnote::after { > summary.accordion-button { color: $header-color; + // Padding for chevron + html[dir=ltr] & { + padding-right: 40px; + } + html[dir=rtl] & { + padding-left: 40px; + } + &::-webkit-details-marker { display: none; } - html[dir=ltr] &::after { + &::after { position: absolute; - right: 1rem; - } + top: 35%; - html[dir=rtl] &::after { - position: absolute; - left: 1rem; + html[dir=ltr] & { + right: 1rem; + } + html[dir=rtl] & { + left: 1rem; + } } }