From 06cbc29c37cb8c1b99a54d02e13a7e0e585b3b19 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 6 Sep 2024 14:36:31 +0000 Subject: [PATCH] Update go button `viewBox` to ensure we can never clip The current go button svg `viewBox` can clip as it results in an image a few % larger than the containing box. This is fine as long as the containing box has some extra padding, but in the next commit we're gonna change that so we need a slightly smaller image. --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 0068eba..0c990da 100644 --- a/index.html +++ b/index.html @@ -226,7 +226,7 @@ font-size: 1.5em; } .bitcoin { font-size: 1.5em; } - .go-button { min-width: 2em; } + .go-button { min-width: 2.1em; } .dropdown { font-size: 17px; } @@ -253,7 +253,7 @@ .right-header-second-paragraph { padding: 10px 20px 10px 20px; } - .go-button { min-width: 1.5em; } + .go-button { min-width: 1.6em; } } BIP 353 Human Readable Names Resolver @@ -274,7 +274,7 @@ ₿ - + -- 2.39.5