From 86487f203d8f52c79fc5ca9534e0711ded48b85b Mon Sep 17 00:00:00 2001 From: Gabriel Cozma Date: Thu, 1 Aug 2024 17:33:24 +0300 Subject: [PATCH] cleanup: add missing rss button & add margin only to the first child Till now, all buttons inside the card header were getting a margin of 30px, but that adds a lot of space not nessesary for other than the first button. So I've made the 30px marging only be added to the first child button of the card's header. Sorry for the wall of text, but I wanted to explain exactly why I did this change. --- public/assets/css/components/card.css | 4 ++-- src/views/download/DownloadOrchidStable.vue | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/public/assets/css/components/card.css b/public/assets/css/components/card.css index df75431b..5915f341 100644 --- a/public/assets/css/components/card.css +++ b/public/assets/css/components/card.css @@ -254,7 +254,7 @@ font-size: 38px; } -.card.card--type-adv.card--type-adv--hz .card-header .btn { +.card.card--type-adv.card--type-adv--hz .card-header .btn:first-child { margin-top: 30px; } @@ -362,4 +362,4 @@ font-size: 24px; line-height: 1.35; } -} \ No newline at end of file +} diff --git a/src/views/download/DownloadOrchidStable.vue b/src/views/download/DownloadOrchidStable.vue index efa24eaa..d3b78e8a 100644 --- a/src/views/download/DownloadOrchidStable.vue +++ b/src/views/download/DownloadOrchidStable.vue @@ -59,8 +59,12 @@

Subscribe to the Newsletter

email - Subscribe Now + Subscribe Now via Email
+ + newspaper + Subscribe via the RSS Feed +
@@ -111,4 +115,4 @@ export default defineComponent({ }, } }); - \ No newline at end of file +