-
Notifications
You must be signed in to change notification settings - Fork 3
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
aligned text with button #314
base: develop
Are you sure you want to change the base?
Conversation
Codecov ReportPatch coverage:
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more Additional details and impacted files@@ Coverage Diff @@
## develop #314 +/- ##
========================================
Coverage 88.97% 88.97%
========================================
Files 175 175
Lines 3311 3312 +1
Branches 834 834
========================================
+ Hits 2946 2947 +1
Misses 365 365
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
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.
Everything seems great! Though, there's a teeny-tiny issue that I need to mention.
const disabled = Object.keys(items).length <= 1; | ||
return ( | ||
<FormControl> | ||
<span> | ||
<IconButton | ||
aria-label={`Remove Entry ${i}`} | ||
onClick={onClick} | ||
className={classes.buttom} | ||
disabled={disabled} |
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.
buttom
is triggering my OCD.
@@ -1,6 +1,9 @@ | |||
import { makeStyles } from "@material-ui/styles"; | |||
|
|||
export default makeStyles(() => ({ | |||
buttom: { | |||
bottom: "10px", | |||
}, |
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.
buttom
also here.
@letziou updates on this? |
According to the meeting I removed the textFieldProps={{ multiline: true }} option from the requirements textField and then adjusted the position of the remove entry button to align with the text.
Closes #262