This is an automated email from the git hooks/post-receive script.
meskio pushed a commit to branch main in repository bridgedb.
commit 0044401f6c490839fa352545d83fad3378337e8b Author: kez kez@torproject.org AuthorDate: Tue Jul 5 14:01:27 2022 -0700
Fix card spacing and CSS --- frontend/assets/scss/_bridges.scss | 10 ---------- frontend/templates/home.html | 4 ++-- 2 files changed, 2 insertions(+), 12 deletions(-)
diff --git a/frontend/assets/scss/_bridges.scss b/frontend/assets/scss/_bridges.scss index cb44868..b6ebccd 100644 --- a/frontend/assets/scss/_bridges.scss +++ b/frontend/assets/scss/_bridges.scss @@ -8,16 +8,6 @@ } }
-#bridgedb-steps-container { - gap: 24px; - - > section { - flex: 1 1 0px; - border: 1px solid #EEEEEE; - border-radius: 4px; - } -} - .p-20px { padding: 20px; } diff --git a/frontend/templates/home.html b/frontend/templates/home.html index d942c3b..52578a2 100644 --- a/frontend/templates/home.html +++ b/frontend/templates/home.html @@ -16,10 +16,10 @@ </div> {% endmacro %}
-<section class="container pt-5 d-flex justify-content-around" id="bridgedb-steps-container"> +<div class="row"> {{ render_step(1, 'Download Tor Browser', 'https://www.torproject.org/projects/torbrowser.html', 'bridges-download') }} {{ render_step(2, 'Get Bridges', '/options'|url, 'bridges-get') }} {{ render_step(3, 'Add the Bridges', '/howto'|url, 'bridges-add') }} -</section> +</div>
{% include 'support.jinja2' %}