stop autolinking on nip19 codes, add an icon afterwards.

This commit is contained in:
fiatjaf 2023-04-24 11:57:47 -03:00
parent ecbac4c156
commit bd58a6fb53
No known key found for this signature in database
GPG Key ID: BAD43C4BE5C1A3A1
3 changed files with 11 additions and 7 deletions

1
ext.svg Normal file
View File

@ -0,0 +1 @@
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M17 13.5v6H5v-12h6m3-3h6v6m0-6-9 9" class="icon_svg-stroke" stroke="#666" stroke-width="1.5" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"></path></svg>

After

Width:  |  Height:  |  Size: 278 B

View File

@ -232,12 +232,12 @@ object Components {
): Resource[IO, HtmlDivElement[IO]] = ): Resource[IO, HtmlDivElement[IO]] =
div( div(
span(cls := "font-bold", key + " "), span(cls := "font-bold", key + " "),
span( span(Styles.mono, cls := "break-all", code),
Styles.mono, a(
a( href := "nostr:" + code,
href := "nostr:" + code, external
code
)
) )
) )
private val external = img(cls := "inline w-4 ml-2", src := "ext.svg")
} }

View File

@ -27,7 +27,10 @@ object Main extends IOWebApp {
cls := "inline-block w-8 mr-2", cls := "inline-block w-8 mr-2",
src := "/favicon.ico" src := "/favicon.ico"
), ),
"nostr army knife" a(
href := "https://github.com/fiatjaf/nostr-army-knife",
"nostr army knife"
)
), ),
div( div(
cls := "flex my-3", cls := "flex my-3",