Struggling to recreate this layout using CSS, specifically with the footer buttons.
https://i.sstatic.net/etG51.png
Here's what I've achieved so far using the el-card component of Element UI and CSS:
<el-card>
<div style="cursor: pointer;">
<p>(15*47*14) Servo Toy Alternator</p>
<img src="https://demo.facturador.pro/logo/imagen-no-disponible.jpg" class="img-thumbail img-custom">
</div>
<div class="card-footer" style="width: 100% ;">
<el-button-group style="width: 100% ; padding: 0px ;">
<el-button class="btn-primary-pos" size="mini" type="primary" icon="el-icon-edit"></el-button>
<el-button class="btn-primary-pos" size="mini" type="primary" icon="el-icon-share"></el-button>
<el-button class="btn-primary-pos" size="mini" type="primary" icon="el-icon-delete"></el-button>
</el-button-group>
</div>
</el-card>
My CSS looks like this:
.btn-primary-pos {
background-color: #007bff;
border-color: #007bff #007bff #007bff;
color: #FFF;
}
.btn-primary-pos:hover,
.btn-primary-pos.hover {
background-color: #0069d9;
border-color: #0069d9;
color: #FFF;
}
.card-footer {
padding: 0px 0.75rem !important;
}