Adjusted username suggestions font size (#269)
Adjusted font sizes and margin according to figma design. VAN-52
This commit is contained in:
@@ -487,4 +487,10 @@ select.form-control {
|
||||
border-radius: 0.5rem;
|
||||
line-height: 2rem;
|
||||
font-weight: 400;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.username-suggestion-label {
|
||||
font-size: 0.875rem;
|
||||
margin-right: 0.25rem;
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ const UsernameField = (props) => {
|
||||
<FormGroup {...props}>
|
||||
{usernameSuggestions.length > 0 && errorMessage ? (
|
||||
<div>
|
||||
<span className="text-gray mr-2">{intl.formatMessage(messages['registration.username.suggestion.label'])}</span>
|
||||
<span className="text-gray username-suggestion-label">{intl.formatMessage(messages['registration.username.suggestion.label'])}</span>
|
||||
{usernameSuggestions.map((username, index) => (
|
||||
<Button
|
||||
type="button"
|
||||
|
||||
Reference in New Issue
Block a user