lostplaces-frontend/components/03_Organisms/imageGrid/_imageGrid.scss

36 lines
665 B
SCSS
Raw Normal View History

2020-08-09 23:43:40 +02:00
.LP-ImageGrid{
2020-08-25 15:55:02 +02:00
@include RV-FlexGrid(290px, 200px);
@include RV-ElementList;
@include RV-Spacing__Inner--small;
2020-08-09 23:43:40 +02:00
2020-09-25 18:09:22 +02:00
&__Item {
position: relative;
2020-08-25 15:55:02 +02:00
@include RV-ContentCrop;
2020-09-25 18:09:22 +02:00
}
2020-09-25 18:46:26 +02:00
2020-09-25 18:09:22 +02:00
&__DeleteItem {
opacity: 0.7;
visibility: hidden;
position: absolute;
top: $-spacing-small;
right: $-spacing-small;
background-color: $-light-brown;
border-radius: 50%;
height: $-spacing-large;
width: $-spacing-large;
line-height: $-spacing-large;
vertical-align: middle;
.LP-Icon{
height: $-spacing-medium;
width: $-spacing-medium;
position:relative;
top: calc(50% - 18.75px);
}
}
&__Item:hover &__DeleteItem {
visibility: visible;
}
2020-08-25 15:55:02 +02:00
}