🚑️ timeline

This commit is contained in:
JMARyA 2025-02-09 23:47:54 +01:00
parent 64956bf2f2
commit 9f95060806
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ const SEARCH_BAR_STYLE: &str = "w-full px-4 mb-4 py-2 text-white bg-black border
pub fn WebsiteIcon(domain: &str) -> PreEscaped<String> {
html! {
h2 class="text-xl font-bold mb-4 -ml-2 flex items-center w-fit" {
img class="p-2" src=(format!("/favicon/{domain}")) {};
img class="p-2 w-10 h-10" src=(format!("/favicon/{domain}")) {};
a href=(format!("/d/{domain}")) { (domain) };
};
}