Merge pull request #7756 from scratchfoundation/far-style-fixes

far style fixes
This commit is contained in:
Tom Lum 2023-07-18 16:06:14 -04:00 committed by GitHub
commit 4b81f7dd70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View file

@ -463,7 +463,7 @@
"privacyBanner.update": "The Scratch privacy policy has been updated, effective May 25, 2023. You can see the new policy <a>here</a>.",
"renameAccount.accountBlocked": "Account Blocked",
"renameAccount.toRecover": "To recover a access to your account, change your username.",
"renameAccount.toRecover": "To recover access to your account, change your username.",
"renameAccount.yourScratchAccount": "Your scratch account has been temporarily blocked because your username appears to contain personal information.",
"renameAccount.privacyIssue": "This is a serious privacy issue. When you share information like this, it is visible to everyone on the internet, so please be careful what you share",
"renameAccount.thingsToAvoid": "When creating a username, please remember to avoid using last names, school names, or other private information in your username.",

View file

@ -107,7 +107,7 @@ const BannedSplash = ({hasSession, user, adminMessages, getAdminMessages}) => {
id="renameAccount.rememberToFollow"
values={{
communityGuidelinesLink: (
<a href="/community_guidelines">
<a href="/community_guidelines" className="white-underline-link">
<FormattedMessage id="renameAccount.CommunityGuidelines" />
</a>
)
@ -203,6 +203,7 @@ const BannedSplash = ({hasSession, user, adminMessages, getAdminMessages}) => {
/>
<b>Password</b>
<FormikInput
type="password"
autoCapitalize="off"
autoComplete="off"
autoCorrect="off"

View file

@ -126,4 +126,9 @@
.mt5{
margin-top: 5px;
}
.white-underline-link{
color: white !important;
text-decoration: underline !important;
}