Skip to content

Commit cdcf391

Browse files
committed
text styling
1 parent 689b356 commit cdcf391

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

app/components/About/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
font-size: 20px;
3434
color: $background;
3535
text-align: left;
36-
font-weight: 200;
36+
font-weight: 300;
3737
}
3838

3939
.blurb {

app/components/Contact/Contact.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Contact: React.FC = React.memo(() => {
1717
<h1>Contact Us</h1>
1818
<br />
1919
<p>Please feel free to provide any feedback, concerns, or comments.</p>
20-
<p>You can find issues the team is currently working on
20+
<p>You can find issues the team is currently working on <span></span>
2121
<a id="issueLink" href="https://github.com/open-source-labs/Chronos/issues" target="_blank" rel="noreferrer">
2222
here
2323
</a>.

app/components/Contact/ContactForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const ContactForm = ({ currentMode }) => {
2626
};
2727

2828
const FormInput: React.FC<FormInputProps> = ({ label, name, placeholder, type = "text", isTextarea = false, accept }) => (
29-
<label htmlFor={name}>
29+
<label htmlFor={name} style={{ fontWeight: 300 }}>
3030
{label}:
3131
{isTextarea ? (
3232
<textarea id={name} name={name} placeholder={placeholder} />

app/components/Contact/styles.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,7 @@ input[type='file'] {
165165
color: blue !important;
166166
}
167167
}
168+
169+
.contact-blurb p{
170+
font-weight: 300;
171+
}

0 commit comments

Comments
 (0)