@sircarloschaves
Posted
What's up friend, how's it going?
Let's go:
- For the testimonial containers you could have used
display: grid
, you would dogrid-template-columns: 1fr
in the mobile layout, and when you switched to the desktop you would dogrid-template-columns: repeat(3 , 1fr)
; - I think it's interesting that you don't specify a size for the container, but rather let
padding-block
define the size of your container, but if you found the responsiveness the way you did it best, and it worked, everything is fine. But in general you don't want to specify a fixed size for your designs.