Skip to content

Commit

Permalink
fix: white space issue between words
Browse files Browse the repository at this point in the history
Signed-off-by: karan <[email protected]>
  • Loading branch information
16-karan committed Feb 5, 2024
1 parent 116b36b commit 18e66ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Profile/AddPasskey.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ const AddPasskey = ({ responseMessages }: { responseMessages: (value: IResponseM
<h1 className="text-gray-500 text-xl font-medium font-montserrat dark:text-white">
Add Passkey
</h1>
<p className="mt-2 text-gray-700 font-montserrat text-sm font-normal font-light leading-normal dark:text-white">
<p className="text-start mt-2 text-gray-700 font-montserrat text-sm font-normal font-light leading-normal dark:text-white">
With Passkey, no complex passwords to remember.
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Profile/DisplayUserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const DisplayUserProfile = ({
<h1 className="text-gray-500 text-xl font-medium dark:text-white">
General
</h1>
<span className="flex flex-wrap text-gray-700 text-sm dark:text-white whitespace-normal ">
<span className="flex flex-wrap text-start text-gray-700 text-sm dark:text-white whitespace-normal">
Basic info, like your first name, last name and profile image
that will be displayed
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Profile/EditUserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ const EditUserProfile = ({ toggleEditProfile, userProfileInfo, updateProfile }:

<div>
<h1 className="text-gray-500 text-xl font-medium font-montserrat dark:text-white">General</h1>
<p className="mt-2 text-gray-700 font-montserrat text-sm font-normal font-light leading-normal dark:text-white">Basic info, like your first name, last name and profile image that will be displayed</p>
<p className="text-start mt-2 text-gray-700 font-montserrat text-sm font-normal dark:text-white">Basic info, like your first name, last name and profile image that will be displayed</p>
</div>

</div>
Expand Down

0 comments on commit 18e66ca

Please sign in to comment.