From fed4f66c0fe7491b979de7ee9c4ff7d8ec2fa1d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Witkowski?= Date: Fri, 2 Aug 2024 19:28:12 +0200 Subject: [PATCH] UI: fix broken css for "load more offers" button --- ui/src/App.vue | 6 ++++++ ui/src/views/OffersList.vue | 13 +++++++++++++ 2 files changed, 19 insertions(+) diff --git a/ui/src/App.vue b/ui/src/App.vue index 2a92304..65d3307 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -163,6 +163,12 @@ export default { margin-bottom: 10px; } +#footer a { + text-decoration: none; + font-size: 14px; + color: #000000; +} + #footer { width: 350px; margin: auto; diff --git a/ui/src/views/OffersList.vue b/ui/src/views/OffersList.vue index 7968c26..f5e31f9 100644 --- a/ui/src/views/OffersList.vue +++ b/ui/src/views/OffersList.vue @@ -58,4 +58,17 @@ export default { #offers-div { padding: 10px; } + +.click-button { + background-color: #011627; + color: #ffffff; + width: 40%; + height: 40px; + display: block; + clear: left; + border-radius: 2px; + padding: 10px; + margin: 0 auto; + font-size: 14px; +}