Привет,
создал компоненту, но не получается поместить кнопки в самый низ страницы с отступом слева чуть. Как это можно сделать? Что стоит подправить? Спасибо!
<template>
<div class="flex flex-col items-start...">
<div class="relative h-32 w-32 ...">
<div class="absolute bottom-0 left-0 h-10 w-16 ..."><a-icon type="table" /></div>
<div class="absolute bottom-0 left-0 h-5 w-16 ..."><a-icon type="question-circle" /></div>
<div class="absolute bottom-0 left-0 h-0 w-16 ...">
<img src="/static/test-images/ex.jpg" />
</div>
</div>
</div>
</template>