From a26ba159a1f66bb1d007cecff6335be458adfc22 Mon Sep 17 00:00:00 2001 From: kemuru <102478601+kemuru@users.noreply.github.com> Date: Mon, 17 Feb 2025 15:12:41 +0100 Subject: [PATCH 1/3] fix: toastify styling tweak to allow for clicking on navbar while active notif --- web/src/styles/global-style.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/src/styles/global-style.ts b/web/src/styles/global-style.ts index 94edd40d4..dfe2d2343 100644 --- a/web/src/styles/global-style.ts +++ b/web/src/styles/global-style.ts @@ -124,4 +124,9 @@ export const GlobalStyle = createGlobalStyle` .hiddenCanvasElement{ display: none; } + + [class*="Toastify__toast-container"] { + top: unset; + padding-top: 20px; + } `; From f7f14ede80754f54d8bd416651dfe933b497d64e Mon Sep 17 00:00:00 2001 From: kemuru <102478601+kemuru@users.noreply.github.com> Date: Mon, 17 Feb 2025 16:36:36 +0100 Subject: [PATCH 2/3] chore: small styling issue --- web/src/components/Field.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/components/Field.tsx b/web/src/components/Field.tsx index 891ae8936..e9db47561 100644 --- a/web/src/components/Field.tsx +++ b/web/src/components/Field.tsx @@ -67,6 +67,7 @@ const LinkContainer = styled.div` const StyledInternalLink = styled(InternalLink)` text-wrap: auto; justify-content: end; + line-height: 1.25; `; type FieldContainerProps = { From c1bf20a9aa74010e0f64e74f0d83fbb93200f680 Mon Sep 17 00:00:00 2001 From: kemuru <102478601+kemuru@users.noreply.github.com> Date: Mon, 17 Feb 2025 16:50:36 +0100 Subject: [PATCH 3/3] chore: important in padding top --- web/src/styles/global-style.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/styles/global-style.ts b/web/src/styles/global-style.ts index dfe2d2343..1fb902bec 100644 --- a/web/src/styles/global-style.ts +++ b/web/src/styles/global-style.ts @@ -127,6 +127,6 @@ export const GlobalStyle = createGlobalStyle` [class*="Toastify__toast-container"] { top: unset; - padding-top: 20px; + padding-top: 20px !important; } `;