diff --git a/templates/widgets/pageactionprime.lucius b/templates/widgets/pageactionprime.lucius index 2b73fb9af..bd8c5373e 100644 --- a/templates/widgets/pageactionprime.lucius +++ b/templates/widgets/pageactionprime.lucius @@ -1,8 +1,8 @@ .page-nav-prime { - padding: 13px; position: absolute; right: 40px; top: 40px; + margin-top: 13px; } .pagenav__list { @@ -11,10 +11,17 @@ .pagenav__list-item { display: inline-block; - margin-right: 7px; - padding-right: 7px; &:not(:last-child) { + margin-right: 7px; + padding-right: 7px; border-right: 1px solid var(--color-primary); } } + +@media (max-width: 1200px) { + + .page-nav-prime { + position: static; + } +}