Files
FarmMapsLib/projects/common-map/src/fm-map/components/item-list/item-list.component.scss
Mark van der Wal 19a8393a3a
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
AW-814: Changed widget component height
2020-01-27 15:03:01 +01:00

43 lines
574 B
SCSS

@import "../../_theme.scss";
@import "~bootstrap/scss/bootstrap.scss";
.widget-container {
overflow:auto;
margin-bottom:1rem;
}
.widget {
position:relative;
border: 1px solid gray('500');
user-select: none;
display:inline-block;
width:50%;
overflow:hidden;
float:left;
}
.widget:after {
content: "";
display: block;
padding-bottom: 66%;
}
.content {
position:absolute;
width:100%;
height:100%;
}
.widget:hover {
background-color: gray('100');
}
.widget-container {
padding:1rem;
}
.item-container {
display:block;
height:100%;
}