I'm having trouble aligning the FileCard component to the start of the container. I attempted using flex-start in my styling, but the FileCards are still centered.
This is the current code snippet:
<div
v-if="posts"
class="flex flex-wrap"
style="justify-content: flex-start"
>
<BlogPost v-for="post in 5" :key="post" :blog="post"> </BlogPost>
</div>
I want the FileCards to appear in this section. https://i.sstatic.net/8EOuo.png