8000 fix: extra space between words by 16-karan · Pull Request #553 · credebl/studio · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: extra space between words #553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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