From 38dcf16c033153ed3550abf30df83826085983f0 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 18 Oct 2025 22:36:37 +0200 Subject: [PATCH] customlink -> custom-link --- .../answers/compatibility-questions-display.tsx | 2 +- web/components/bio/editable-bio.tsx | 2 +- web/components/markdown.tsx | 2 +- web/components/searches/button.tsx | 2 +- web/components/votes/vote-info.tsx | 2 +- web/components/votes/vote-item.tsx | 4 ++-- web/pages/about.tsx | 4 ++-- web/pages/register.tsx | 4 ++-- web/pages/signin.tsx | 2 +- web/styles/globals.css | 16 ++++++++-------- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/web/components/answers/compatibility-questions-display.tsx b/web/components/answers/compatibility-questions-display.tsx index 8315c326..a26150f7 100644 --- a/web/components/answers/compatibility-questions-display.tsx +++ b/web/components/answers/compatibility-questions-display.tsx @@ -190,7 +190,7 @@ export function CompatibilityQuestionsDisplay(props: { ) : ( <> {isCurrentUser && !fromProfilePage && ( - + {otherQuestions.length < 1 ? ( You've already answered all the compatibility questions— diff --git a/web/components/bio/editable-bio.tsx b/web/components/bio/editable-bio.tsx index 02ebbd10..2681c318 100644 --- a/web/components/bio/editable-bio.tsx +++ b/web/components/bio/editable-bio.tsx @@ -28,7 +28,7 @@ Write a clear and engaging bio to help others understand who you are and the con export function BioTips() { return ( - + {tips} Read full tips for writing a high-quality bio diff --git a/web/components/markdown.tsx b/web/components/markdown.tsx index 9895bd3a..901ef6d9 100644 --- a/web/components/markdown.tsx +++ b/web/components/markdown.tsx @@ -29,7 +29,7 @@ export default function MarkdownPage({content, filename}: Props) { return ( - + {children} diff --git a/web/components/searches/button.tsx b/web/components/searches/button.tsx index 62ba7c51..259fd56d 100644 --- a/web/components/searches/button.tsx +++ b/web/components/searches/button.tsx @@ -180,7 +180,7 @@ function StarModal(props: { {visibleUsers.map((user) => (
  • - + {user.name} ( -

    +

    You can discuss any of those proposals through the contact form, the feedback form, or any of our socials.

    diff --git a/web/components/votes/vote-item.tsx b/web/components/votes/vote-item.tsx index 1eeb5c0c..f028dd85 100644 --- a/web/components/votes/vote-item.tsx +++ b/web/components/votes/vote-item.tsx @@ -33,9 +33,9 @@ export function VoteItem(props: { - + {!!vote.priority ?
    Priority: {vote.priority.toFixed(0)}%
    :

    } - {!vote.is_anonymous && creator?.username && {creator.username}} + {!vote.is_anonymous && creator?.username && {creator.username}}
    Governed and voted by the community, while ensuring no drift through our Governed and voted by the community, while ensuring no drift through our constitution.} /> @@ -126,7 +126,7 @@ export default function About() {
    -

    Support our not-for-profit +

    Support our not-for-profit infrastructure.

    -

    +

    By signing up, I agree to the{" "} Terms and Conditions @@ -238,7 +238,7 @@ function RegisterComponent() {

    -
    +

    Already have an account?{' '} diff --git a/web/pages/signin.tsx b/web/pages/signin.tsx index 4399fbe9..db558090 100644 --- a/web/pages/signin.tsx +++ b/web/pages/signin.tsx @@ -182,7 +182,7 @@ function RegisterComponent() {

    -
    +

    No account?{' '} diff --git a/web/styles/globals.css b/web/styles/globals.css index 66283b27..24f8bdfc 100644 --- a/web/styles/globals.css +++ b/web/styles/globals.css @@ -365,27 +365,27 @@ ul { padding-left: 1.25rem; margin-top: 0.5rem; } -.customlink a, -.customlink button{ +.custom-link a, +.custom-link button{ color: rgb(var(--color-primary-500)); text-decoration: none; font-family: var(--font-main), serif; } -.dark .customlink a, -.dark .customlink button { +.dark .custom-link a, +.dark .custom-link button { color: rgb(var(--color-primary-600)); text-decoration: none; font-family: var(--font-main), serif; } -.customlink a:hover, -.customlink button:hover { +.custom-link a:hover, +.custom-link button:hover { text-decoration: underline; } -.dark .customlink a:hover, -.dark .customlink button:hover { +.dark .custom-link a:hover, +.dark .custom-link button:hover { text-decoration: underline; }