🚑️ 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

2
Cargo.lock generated
View file

@ -202,7 +202,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]] [[package]]
name = "based" name = "based"
version = "0.1.0" version = "0.1.0"
source = "git+https://git.hydrar.de/jmarya/based?branch=ui#12e709d722e7fe9d61ca3d76b3642ff2ef5301c2" source = "git+https://git.hydrar.de/jmarya/based?branch=ui#519c2d3e28040601ac37812c9882e54532036b53"
dependencies = [ dependencies = [
"bcrypt", "bcrypt",
"chrono", "chrono",

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> { pub fn WebsiteIcon(domain: &str) -> PreEscaped<String> {
html! { html! {
h2 class="text-xl font-bold mb-4 -ml-2 flex items-center w-fit" { 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) }; a href=(format!("/d/{domain}")) { (domain) };
}; };
} }