From 282f695c49779aa78090a53820ddccf047eb95b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Volf?= Date: Fri, 6 Sep 2024 07:40:31 +0200 Subject: [PATCH] feat: make icons on the today page consistent --- src/components/pages/category_today_page.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/pages/category_today_page.rs b/src/components/pages/category_today_page.rs index 085b71b..47df487 100644 --- a/src/components/pages/category_today_page.rs +++ b/src/components/pages/category_today_page.rs @@ -32,7 +32,7 @@ pub(crate) fn CategoryTodayPage() -> Element { div { class: "px-8 flex flex-row items-center gap-2 font-bold", i { - class: "fa-solid fa-water text-xl" + class: "fa-solid fa-water text-xl w-6 text-center" } div { class: "mt-1", @@ -110,7 +110,7 @@ pub(crate) fn CategoryTodayPage() -> Element { div { class: "px-8 flex flex-row items-center gap-2 font-bold", i { - class: "fa-solid fa-calendar-xmark text-xl" + class: "fa-solid fa-calendar-xmark text-xl w-6 text-center" } div { class: "mt-1", @@ -128,7 +128,7 @@ pub(crate) fn CategoryTodayPage() -> Element { div { class: "px-8 flex flex-row items-center gap-2 font-bold", i { - class: "fa-solid fa-calendar-check text-xl" + class: "fa-solid fa-calendar-check text-xl w-6 text-center" } div { class: "mt-1",