fix page navigation buttons

This commit is contained in:
Philipp Kühn 2021-02-05 12:09:35 +01:00
parent 070040fcc1
commit 5a2c886380
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,7 @@
<template>
<btn-wrapper class="page-navigation">
<btn
class="page-navigation__previous"
type="secondary"
icon="arrow-left"
icon-position="before"
@ -10,6 +11,7 @@
{{ previousPage.title }}
</btn>
<btn
class="page-navigation__next"
type="secondary"
icon="arrow-right"
:to="nextPage.redirect || nextPage.link"

View File

@ -1,3 +1,7 @@
.page-navigation {
justify-content: space-between;
&__next:only-child {
margin-left: auto;
}
}