-
Notifications
You must be signed in to change notification settings - Fork 69
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
Mejora de UI/UX #764
base: develop
Are you sure you want to change the base?
Mejora de UI/UX #764
Conversation
El primer commit es solo la configuración del archicvo docker-compose.yml. Hice commit y se me olvidó borrarlo. Un saludo! |
Hello Guille, first of all, welcome and thank you for wanting to contribute! It's great to see you here 😉!
About the code I'll do a fast review now, but I'd like to check it in more depth later. |
Bienvenido @gmartincor! Encantados de tener más ayuda en este proyecto 💪 Algunas notas:
Saludos 👋👋 |
Hello!! Thanks so much for your time and attention. I'll get right on those corrections. 😁 Always a pleasure! Best regards!! 👋👋 |
Hello @gmartincor I think we should also revert the second point:
Not sure what problem are you trying to solve here, IMO the current default ordering and sorting is fine (it took us some time to reach the current behavior, see this thread #495 for more information). |
Hello @markets , I thought it would be a good idea for administrators to appear first by default in the user list when opening the site for the first time, so that the rest of the members can have easier and more intuitive visual access to them, while maintaining the order based on the last connection for both administrators and the rest of the members. |
Sorry @gmartincor 🙏🏼 but I don't agree with that. IMO we should revert that change. In general, it's a good idea to use each branch/PR for one single thing, that's the easiest way to move forward. I think we should use this branch to fix only this issue #729. And if we want to change the default ordering, it will be better to discuss it before and in another thread. Focused branches are the best 👌🏼 for everybody (developer, reviewer, tester, releaser, product). |
Hey @gmartincor let's do it as @markets said and focus only on that issue. Nevertheless, I'm going to take the opportunity to give you a few more tips. |
Hello 👋 @gmartincor Welcome to the wonderful world of open source! It helped me a lot to grow as a developer and I still learn new things everyday after more than 10 years doing so 🙌 Hope we can help you too with those code reviews and discussions, they are always very useful. PS sorry 🙏 we are still using a very old Bootstrap version, I just created a new issue (#766) to migrate to a newer version some day |
"Hello @markets , yesss!! My intention is to collaborate while I continue learning and growing as a developer. Thank you very much for your support. I still don't have much experience with Bootstrap, but I would like to carry out the migration to the updated version if it is possible 😁. |
@gmartincor after all those changes, we're still not fixing the original issue (#729). Actually, the current diff in this branch:
I still think we should focus on fix/improve the issue described in #729. Small steps is the way to go. |
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.
Sorry the delay 🙏. I think it's okay. However, it'd be good to check with @markets if the changes and the different sizes that can have a card are okay. It would be good if you share a screenshot with those cases.
@gmartincor Let me ask for a couple of things before completing the code review and testing:
|
Hello! 👋 @markets ,Thank you very much🙏 for the time you and Fran are dedicating to reviewing my code and comments. I’m sorry for sending so many commits, and I really appreciate your patience. This process has been a great learning experience for me.😀 Initially, I tried changing only the To solve this problem, I had to make more modifications. I have edited the Pull Request (PR) description where I explain these changes in more detail. Thank you again for your understanding and support. Best regards!!👋👋 |
No prob @gmartincor! We're really happy to have more help in this project 👏🏼 Please don't forget about this point:
|
Hi!! The changes in the Finally, I removed the changes from that file and restored it to its original state. |
Card Height Adjustment and Layout Refactor with Flexbox
Pull Request Description
This PR fixes the content overflow issue in cards caused by using
height
instead ofmin-height
. It also introduces improvements in element distribution to ensure responsive design and uniform card alignment.Fixes and Improvements
Card Height and Overflow Fix:
height: 178px
withmin-height: 178px
to prevent content overflow when information exceeds the default height.Main Container Refactor with Flexbox:
display: flex; flex-wrap: wrap; gap: 20px;
to.to-member-cards
to ensure uniform card distribution and correct placement in rows when multiple columns are present..to-member-card__wrapper
now defines consistent widths on both large and small screens, improving responsive design adaptability.Vertical Distribution and Internal Organization:
.to-member-card
) usesdisplay: flex; flex-direction: column;
to organize its content vertically withjustify-content: space-between
in the body.Responsiveness Improvements:
Minor Visual Changes (Optional):
border-radius
to the cards to round corners and unify the style.Summary
min-height
instead ofheight
.With this update, cards behave correctly on different screen sizes, prevent content overflow, and maintain a consistent appearance throughout the overall design.