2
0
mirror of https://github.com/frappe/books.git synced 2025-02-05 13:38:31 +00:00
books/src/pages/ListView/ListRow.vue

22 lines
371 B
Vue
Raw Normal View History

<template>
<div class="list-row row no-gutters py-2 px-3">
<slot></slot>
</div>
</template>
<style lang="scss">
@import "../../styles/variables";
.list-row {
cursor: pointer;
border: 1px solid $border-color;
background-color: var(--white);
&:hover {
background-color: var(--light);
}
}
.list-row:not(:first-child) {
border-top: none;
}
</style>