Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @LeviKuhaulua

    Submitted

    What are you most proud of, and what would you do differently next time?

    I'm proud of being able to use CSS Grid to accomplish the component versus Flex. I definitely use Flex more because I am more comfortable with using it - so using Grid helped to challenge me with completing the component. Another thing that I'm proud of is actually using Paint 3D and the Photo tool with Windows to markup the design files to get the layout that I wanted to achieve with Grid. It is definitely something that I should've used earlier to get better at visualizing and creating layouts with Flex and/or Grid.

    What specific areas of your project would you like help with?

    I wonder if a media query was necessary to get the components to wrap at smaller screen sizes. I did the following to make the components take up all the available space on mobile screen sizes:

    @media (width < 426px) {
      .wrapper {
        margin-block: 1rem; 
        & > * {  grid-column: span 2; }
      }
    }
    

    What I tried was to initially do was grid-template-columns: repeat(auto-fit, minmax(320px, 1fr); to get it to wrap, but found that the components would not wrap or some components (specifically the pricing) would end up larger than the others. Is there a better function or unit to use inside the repeat() function to accomplish the mobile design without a media query?

    @IvaBas

    Posted

    Hi there, i just did like this, simple and it works good :) Kind regards! @media only screen and (min-width: 320px) and (max-width: 839px) { .container { margin: 10rem auto; grid-template-areas: "box1" "box2" "box3"; } }

    0
  • Heahl 480

    @Heahl

    Submitted

    What are you most proud of, and what would you do differently next time?

    Beautiful challenge. Never worked with grid before, so had to do some research, but think this one turned out pretty nice.

    What challenges did you encounter, and how did you overcome them?

    Used a preset color of tailwind, since the styleguide is not complete.

    @IvaBas

    Posted

    Hi, looks great, just for more precised colors of boxes, I used the same color with different transparancy, best regards :)

    Marked as helpful

    0
  • Abaso 90

    @originalboss

    Submitted

    What are you most proud of, and what would you do differently next time?

    I think I did the desktop design well, but I struggled with the mobile design.

    What challenges did you encounter, and how did you overcome them?

    I did take a break during this prject, s I don't really remember what it was I just remember struggling with the mobile design

    What specific areas of your project would you like help with?

    I'm not sure, I think I did alright. I will gladly accept any feedback.

    @IvaBas

    Posted

    Hi, you can put that the main container has the width of 900px, so that the width is more similar to the original. If you used css grid and grid areas, for desktop design you will have grid-template-areas: "box1 box1" "box2 box3"; And for mobile design grid-template-areas: "box1" "box2" "box3"; Kind regards :)

    0