-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: removed font-medium classes as the base style for all elements i…
…s font-medium (#2146)
- Loading branch information
1 parent
bdf3831
commit d06a1ca
Showing
20 changed files
with
32 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -264,14 +264,14 @@ const UserSettingsPage = ({ user }: userSettingsPageProps) => { | |
</Title> | ||
<form onSubmit={handleUpdateProfile} className="flex flex-col gap-6 mt-6" ref={formRef}> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
label="Name*" | ||
placeholder="April O'Neil" | ||
required | ||
name="nameInput" | ||
/> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
placeholder="[email protected]" | ||
handleChange={handleEmailChange} | ||
label="Email*" | ||
|
@@ -281,7 +281,7 @@ const UserSettingsPage = ({ user }: userSettingsPageProps) => { | |
|
||
{/* Bio section */} | ||
<div className="flex flex-col gap-2"> | ||
<label className="flex flex-col w-full text-sm font-medium text-light-slate-9"> | ||
<label className="flex flex-col w-full text-sm text-light-slate-9"> | ||
Bio | ||
<textarea | ||
rows={4} | ||
|
@@ -304,28 +304,28 @@ const UserSettingsPage = ({ user }: userSettingsPageProps) => { | |
)} | ||
</div> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
placeholder="https://opensauced.pizza" | ||
label="URL" | ||
pattern="http[s]?://.*\..{2,}" | ||
name="url" | ||
/> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
placeholder="https://github.com/sponsors/open-sauced" | ||
label="GitHub Sponsors URL" | ||
pattern="http[s]?://.*\..{2,}" | ||
name="github_sponsors_url" | ||
/> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
placeholder="https://www.linkedin.com/in/brianldouglas" | ||
label="LinkedIn URL" | ||
pattern="http[s]?://.*\..{2,}" | ||
name="linkedin_url" | ||
/> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
placeholder="https://discord.com/users/832877193112762362" | ||
label="Discord URL" | ||
onChange={handleValidateDiscordUrl} | ||
|
@@ -339,13 +339,13 @@ const UserSettingsPage = ({ user }: userSettingsPageProps) => { | |
name="twitter_username" | ||
/> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
placeholder="OpenSauced" | ||
label="Company" | ||
name="company" | ||
/> | ||
<TextInput | ||
className="font-medium bg-light-slate-4 text-light-slate-11" | ||
className="bg-light-slate-4 text-light-slate-11" | ||
placeholder="USA" | ||
label="Location" | ||
name="location" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
} | ||
|
||
* { | ||
font-weight: 500; | ||
@apply font-normal; | ||
} | ||
|
||
body { | ||
|