I am using el-pagination on a dark page and I want to make its background color transparent.
When I do not use the 'background' prop, the background color of el-pagination is white.
Here is how it looks: (sorry I can't add an image)
https://i.stack.imgur.com/K9mPz.png
My code:
<el-pagination
v-if="isPaging"
@size-change="handleSizeChange"
@current-change="handlePageChange"
:current-page="currentPage"
:page-sizes="pageSizes"
:page-size="pageSize"
:total="totalSize"
layout="total, sizes, prev, pager, next, jumper"
class="col-12 d-flex justify-content-end flex-wrap">
</el-pagination>
Is there a way for me to change the background color to transparent?