24 lines
390 B
SCSS
24 lines
390 B
SCSS
|
@import "../../_theme.scss";
|
||
|
@import "~bootstrap/scss/bootstrap.scss";
|
||
|
|
||
|
feature-list-feature-container {
|
||
|
width:100%;
|
||
|
pointer-events:none;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
border-bottom: 1px solid gray('500');
|
||
|
user-select: none;
|
||
|
padding-left:1.5rem;
|
||
|
}
|
||
|
|
||
|
.row:hover {
|
||
|
background-color: gray('100');
|
||
|
}
|
||
|
|
||
|
.cropfields {
|
||
|
border-top: 1px solid gray('500');
|
||
|
margin-left: -1.5rem;
|
||
|
margin-right: -1.5rem;
|
||
|
}
|