diff --git a/source/_patterns/02-components/language-switcher/language-switcher.scss b/source/_patterns/02-components/language-switcher/language-switcher.scss index 4a49a2aff7..86dbf5faad 100644 --- a/source/_patterns/02-components/language-switcher/language-switcher.scss +++ b/source/_patterns/02-components/language-switcher/language-switcher.scss @@ -34,7 +34,23 @@ // TODO: This is an enhancement for more languages, but obviously doesn't scale that nicely and would need some rework &:not([aria-selected="true"]) ~ li:not([aria-selected="true"]) { - top: to-rem($pxValue: 108); + top: to-rem($pxValue: 54 * 2); + + & ~ li:not([aria-selected="true"]) { + top: to-rem($pxValue: 54 * 3); + + & ~ li:not([aria-selected="true"]) { + top: to-rem($pxValue: 54 * 4); + + & ~ li:not([aria-selected="true"]) { + top: to-rem($pxValue: 54 * 5); + + & ~ li:not([aria-selected="true"]) { + top: to-rem($pxValue: 54 * 6); + } + } + } + } } @media screen and (min-width: 1024px) { top: to-rem($pxValue: 56);