Skip to content
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

Implemented Tailwind / Added Forms #48

Merged
merged 8 commits into from
Feb 29, 2024
Merged

Implemented Tailwind / Added Forms #48

merged 8 commits into from
Feb 29, 2024

Conversation

rsteckline
Copy link
Contributor

@rsteckline rsteckline commented Feb 29, 2024

What kind of change does this PR introduce?

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Refactor(DRY-ing up/ reorganizing code, etc.)
  • Small fix (Corrected a typo, removed a comment, etc.)

Feature description:

  • Correctly implemented Tailwind
  • Added Login and Signup forms, styled with Tailwind
  • Updated country list in GeoJSON

Checklist before requesting a review

  • I ran the code locally and verified that there are no visible errors.
  • I have performed a self-review of my code
  • I have refactored my code before this push
  • The commit message follows our guidelines
  • My code follows the code style of this project.

What’s next:

Work on styling consistency across devices, integrate working breadbox

@rsteckline rsteckline self-assigned this Feb 29, 2024
Copy link

vercel bot commented Feb 29, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
laboulangerie ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 29, 2024 1:59am

@rsteckline rsteckline linked an issue Feb 29, 2024 that may be closed by this pull request
justify-content: space-between;
padding-bottom: 5rem;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Making a note of this rule for min-height vs max-height and padding bottom bc it's working effectively on my branch with max height and no padding.

@@ -89,8 +89,9 @@
@media screen and (min-width: 1025px){
.BreadListWrapper h2 {
margin-top: 2rem;
font-size: xx-large;
font-size: 2rem;
margin-bottom: 1rem;
Copy link
Contributor

@dsstevens dsstevens Feb 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will be a merge conflict with the working code on my branch but since my styling has all migrated to the inline JSX with Tailwind, it should be easy to reconcile. If we need to change the font and margin top, we can adjust as needed.

const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const { name, value } = event.target;
setCredentials({ ...credentials, [name]: value });
};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job implementing this with TS!

Copy link
Contributor

@dsstevens dsstevens left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job creating the user account form in TypeScript and adding the GeoJSON. I have some concerns about the Tailwind and styling conflicting since we were working on the same components. I will resolve the merge conflicts and made note of the conflicting CSS that might need revisiting. Rn, the styling looks good on my side with significant margins and padding differing for the main and app components.

@dsstevens dsstevens merged commit ed25da0 into main Feb 29, 2024
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

FE: User Story: should see a login option in the nav bar
2 participants