-
Notifications
You must be signed in to change notification settings - Fork 26
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
fix: Add missing margin to TextField and Select #543
Conversation
@@ -168,7 +168,11 @@ textarea.Field--has-error:focus:hover, | |||
display: block; | |||
position: relative; | |||
box-sizing: border-box; | |||
margin-bottom: var(--space-smallest); | |||
margin-bottom: var(--space-small); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Had a discussion with Aaron and Bobby, we decided to go with 16px
Preview branch generated at https://bottom-margin.d1gko6en628vir.amplifyapp.com |
@@ -210,7 +218,7 @@ textarea.Field--has-error:focus:hover, | |||
text-align: left; | |||
color: var(--field-label-text-color); | |||
font-size: var(--text-size-small); | |||
font-weight: var(--font-weight-bold); | |||
font-weight: var(--font-weight-medium); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not directly related to this ticket, but Bobby noticed the font-weight for Field__label
was off.
Preview branch generated at https://bottom-margin.d1gko6en628vir.amplifyapp.com |
Ref: #538