From bdda02773436c570e2c56abead7b088b89ba3e87 Mon Sep 17 00:00:00 2001 From: Dat Date: Tue, 15 Jul 2025 10:14:50 +0200 Subject: [PATCH 1/7] Add complaint link and redesign footer --- src/App.vue | 6 +- src/components/Layout/Foot.vue | 133 +++++++++++++++++++++++++-------- 2 files changed, 102 insertions(+), 37 deletions(-) diff --git a/src/App.vue b/src/App.vue index 47e13a4e..fb6c8cb8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,7 +5,7 @@ - + diff --git a/src/components/Layout/Foot.vue b/src/components/Layout/Foot.vue index df1ffef6..be17c17e 100644 --- a/src/components/Layout/Foot.vue +++ b/src/components/Layout/Foot.vue @@ -1,44 +1,113 @@ From b2f208ecb732bbba9483d3d5f476f96beaf17a7a Mon Sep 17 00:00:00 2001 From: Dat Date: Tue, 15 Jul 2025 11:31:57 +0200 Subject: [PATCH 2/7] fix linting error --- src/components/Layout/Foot.vue | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/components/Layout/Foot.vue b/src/components/Layout/Foot.vue index be17c17e..f6b5fda8 100644 --- a/src/components/Layout/Foot.vue +++ b/src/components/Layout/Foot.vue @@ -32,34 +32,34 @@ @@ -103,20 +70,21 @@ export default { .row-margin { margin: 48px !important; -} -.small-row-margin { - margin: 24px !important; + display: flex; } .col-margin { margin-right: 80px !important; } -.small-col-margin { - margin-bottom: 40px !important; - margin-right: 0 !important; -} -.stack-vertical { - flex-direction: column !important; +@media (max-width: 480px) { + .row-margin { + margin: 24px !important; + flex-direction: column !important; + } + .col-margin { + margin-right: 0 !important; + margin-bottom: 40px !important; + } } From 4f7b68a4e6cc9271869381647370c3f30c525bae Mon Sep 17 00:00:00 2001 From: Dat Date: Sun, 3 Aug 2025 23:51:56 +0200 Subject: [PATCH 6/7] add footer-padding of 56px --- src/App.vue | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index fb6c8cb8..1b0eee5e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,7 +5,7 @@ - + From c1d33e15c0ea1b71039e626dafbd7623b81616e8 Mon Sep 17 00:00:00 2001 From: Dat Date: Mon, 4 Aug 2025 00:10:54 +0200 Subject: [PATCH 7/7] fix height bug --- src/components/Layout/Foot.vue | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/components/Layout/Foot.vue b/src/components/Layout/Foot.vue index a74ccfa6..73691815 100644 --- a/src/components/Layout/Foot.vue +++ b/src/components/Layout/Foot.vue @@ -40,43 +40,34 @@ export default { list-style: none; padding-left: 0; } - .footer-list-title { font-weight: bold; color: white; margin-bottom: 8px; } - .footer-list li { margin-bottom: 5px; } - .footer-list a, .footer-list :deep(a) { color: white !important; text-decoration: none; transition: text-decoration 0.2s, color 0.2s; } - .footer-list a:hover, .footer-list :deep(a:hover) { text-decoration: underline; color: white !important; } - .v-footer { background-color: #0063BF !important; - height: 100%; padding: 0; } - .row-margin { margin: 48px !important; display: flex; } - .col-margin { margin-right: 80px !important; } - @media (max-width: 480px) { .row-margin { margin: 24px !important;