From e19e7779d51836cd7f0f01fc812424dc93344013 Mon Sep 17 00:00:00 2001 From: Rito <83614463+ritorhymes@users.noreply.github.com> Date: Fri, 19 Sep 2025 23:14:31 -0400 Subject: [PATCH] fix(layout): add spacing between buttons on tablet screens --- _sass/screen.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_sass/screen.scss b/_sass/screen.scss index a0b4af21d6..720b9e7fe0 100644 --- a/_sass/screen.scss +++ b/_sass/screen.scss @@ -943,6 +943,12 @@ h1 span.fa, h2 span.fa, h3 span.fa, h4 span.fa, h5 span.fa, h6 span.fa { width: 290px; height: 55px; } +// Give space when this button is stacked underneath the two other btn-home's in tablet screen width +@media screen and (min-width: 769px) and (max-width: 1029px) { + #buybitcoinbutton { + margin-top: 10px; + } +} .btn:not(:first-child) { margin-left: 6px; }