PMCORE-3249: UI - set a slider in list view and card view

This commit is contained in:
fabio
2021-08-30 11:04:40 -04:00
parent c0b996ebf3
commit 12f85f32c3
3 changed files with 10 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="pm-vue-list">
<div class="card pm-vue-list-inside" @dblclick.prevent="dblClick">
<div class="card-body">
<div class="list-body">
<slot> </slot>
</div>
</div>
@@ -38,8 +38,11 @@ export default {
color: #212529;
background-color: #f8f9fa;
}
.pm-vue-list-inside:hover {
background-color: #cfd9e4;
}
.list-body {
height: 224px;
overflow-x: hidden;
}
</style>