Willem Dantuma a3e14a94cc
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Remove old theming, use correct theme colors and a friendlier icon
2020-02-22 09:45:41 +01:00

42 lines
587 B
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: 100%;
}
.content {
position:absolute;
width:100%;
height:100%;
}
.widget:hover {
background-color: gray('100');
}
.widget-container {
padding:1rem;
}
.item-container {
display:block;
height:100%;
}