From 7ede7eb1a2d16a0b6ae3bddbb1e8ee02fa8f2275 Mon Sep 17 00:00:00 2001 From: Djoufson CHE BENE Date: Sun, 7 Jun 2026 09:10:33 +0100 Subject: [PATCH 1/2] fix icons library load --- src/app/Components/App.razor | 9 ++++++--- src/app/styles/input.css | 6 +++++- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/app/Components/App.razor b/src/app/Components/App.razor index a5b8c4f..90c0f08 100644 --- a/src/app/Components/App.razor +++ b/src/app/Components/App.razor @@ -26,9 +26,12 @@ - - - + + + + + + diff --git a/src/app/styles/input.css b/src/app/styles/input.css index 46a2444..97cb306 100644 --- a/src/app/styles/input.css +++ b/src/app/styles/input.css @@ -62,7 +62,11 @@ ::before, ::backdrop, ::file-selector-button { - border-color: var(--color-gray-200, currentcolor);font-family: Lexend, "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + border-color: var(--color-gray-200, currentcolor); + } + + body { + font-family: Lexend, "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-weight: 300; } } From 7b05a49201727f03d8f276dfa14b3081bb15dd48 Mon Sep 17 00:00:00 2001 From: Djoufson CHE BENE Date: Sun, 7 Jun 2026 09:15:00 +0100 Subject: [PATCH 2/2] fix inherited icon colors --- src/app/styles/input.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/input.css b/src/app/styles/input.css index 97cb306..f64ecc2 100644 --- a/src/app/styles/input.css +++ b/src/app/styles/input.css @@ -65,14 +65,14 @@ border-color: var(--color-gray-200, currentcolor); } - body { + body, p, span, ul, li, h1, h2, h3, h4 { font-family: Lexend, "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-weight: 300; } } @layer components { - *{ + body, p, span, ul, li, h1, h2, h3, h4{ @apply text-dark-purple; }