You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"I know in the design it is not completely clear on how to place these tiles properly. Here a suggestion:
Could we make that the tiles grow with the page? That they always have lets say 24px spacing in between.
You could make the black background only as a color not an image, and use the color "blob" as image and position it relative to the black box then in top-right, bottom, right corner..."
Suggestions to fix
Use display: grid instead display: flex on container;
Why? because with display: grid you can set the ammount of columns you need (for example: grid-template-columns: repeat(3, 1fr) - this will do 3 columns with the same size).
Use only the blob as svg, and create the card manually.
Position manually the blob using position: absolute.
Summary
Feedback received:
Suggestions to fix
display: grid
insteaddisplay: flex
on container;display: grid
you can set the ammount of columns you need (for example:grid-template-columns: repeat(3, 1fr)
- this will do 3 columns with the same size).svg
, and create the card manually.position: absolute
.User story it relates to
#118
Basic example
The text was updated successfully, but these errors were encountered: