mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-04-10 17:48:41 -04:00
Improve prompts link
This commit is contained in:
@@ -27,12 +27,13 @@ export function AddCompatibilityQuestionButton(props: {
|
||||
if (!user) return null
|
||||
return (
|
||||
<>
|
||||
<span
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setOpen(true)}
|
||||
className="text-primary-500 cursor-pointer text-sm transition-all hover:underline"
|
||||
className="text-sm"
|
||||
>
|
||||
Submit your own compatibility question
|
||||
</span>
|
||||
or submit your own!
|
||||
</button>
|
||||
<AddCompatibilityQuestionModal
|
||||
open={open}
|
||||
setOpen={setOpen}
|
||||
|
||||
@@ -199,16 +199,16 @@ export function CompatibilityQuestionsDisplay(props: {
|
||||
) : (
|
||||
<>
|
||||
{isCurrentUser && !fromLoverPage && (
|
||||
<span>
|
||||
<span className='customlink'>
|
||||
{otherQuestions.length < 1 ? (
|
||||
<span className="text-ink-600 text-sm">
|
||||
You've already answered all the compatibility questions!
|
||||
</span>
|
||||
) : (
|
||||
<span className="text-ink-600 text-sm">
|
||||
Answer more questions to increase your compatibility scores!
|
||||
Answer more questions to increase your compatibility scores—
|
||||
</span>
|
||||
)}{' '}
|
||||
)}{''}
|
||||
<AddCompatibilityQuestionButton
|
||||
refreshCompatibilityAll={refreshCompatibilityAll}
|
||||
/>
|
||||
|
||||
@@ -2,8 +2,13 @@
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
/*make var font-main*/
|
||||
:root {
|
||||
--font-main: "Crimson Pro", Georgia, "Times New Roman", Times, serif;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-family: "Crimson Pro", Georgia, "Times New Roman", Times, serif;
|
||||
font-family: var(--font-main), serif;
|
||||
}
|
||||
|
||||
@layer base {
|
||||
@@ -278,22 +283,25 @@ ul {
|
||||
padding-left: 1.25rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.customlink a {
|
||||
.customlink a,
|
||||
.customlink button{
|
||||
color: rgb(var(--color-primary-500));
|
||||
text-decoration: none;
|
||||
font-family: var(--font-main), serif;
|
||||
}
|
||||
|
||||
.dark .customlink a {
|
||||
.dark .customlink a,
|
||||
.dark .customlink button {
|
||||
color: rgb(var(--color-primary-700));
|
||||
}
|
||||
|
||||
.customlink a:hover {
|
||||
.customlink a:hover,
|
||||
.customlink button:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.sidebar-nav {
|
||||
font-family: "Inter", sans-serif; /* clean and legible */
|
||||
font-family: var(--font-main), serif;
|
||||
}
|
||||
|
||||
.body-bg {
|
||||
|
||||
Reference in New Issue
Block a user