far style fixes

This commit is contained in:
tomlum 2023-07-18 16:05:42 -04:00
parent d21ebc5c56
commit bfb7c0e06c
3 changed files with 8 additions and 2 deletions

View file

@ -456,7 +456,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;
}