diff --git a/src/src/components/AppFooter.vue b/src/src/components/AppFooter.vue index ce6bd2b..4c4062a 100644 --- a/src/src/components/AppFooter.vue +++ b/src/src/components/AppFooter.vue @@ -1,9 +1,17 @@ @@ -22,12 +30,22 @@ footer { .container { padding-top: 0.25rem; padding-bottom: 0.25rem; - text-align: right; } - button, - a:not(:last-child) { - margin-right: 1rem; + .link-list { + display: flex; + flex-wrap: wrap; + justify-content: flex-end; + gap: 0.75rem 1rem; + margin: 0; + list-style-type: none; + + @include media-size-mobile { + flex-flow: column nowrap; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + font-size: 16px; + } } }