mirror of
https://github.com/frappe/books.git
synced 2025-02-05 13:38:31 +00:00
22 lines
371 B
Vue
22 lines
371 B
Vue
|
<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>
|