lostplaces-frontend/components/03_Organisms/placeGrid/_placeGrid.scss

28 lines
518 B
SCSS
Raw Normal View History

2020-08-01 10:28:08 +02:00
.LP-PlaceGrid{
.LP-PlaceGrid__Grid{
margin: 0;
padding: 0;
list-style-type: none;
2021-10-24 12:32:32 +02:00
@include RV-Grid;
@include RV-Grid--autoWidth;
--itemHeight: 200px;
--itemMinWidth: 280px;
--gap: 15px;
padding: 15px;
justify-content: center;
2020-07-17 17:55:46 +02:00
.LP-PlaceGrid__Item{
2021-10-24 12:32:32 +02:00
@include RV-Grid__Item;
}
.LP-Link{
.LP-PlaceTeaser{
&:hover{
box-shadow: 0 0 2px $-grey;
}
}
}
}
2021-10-02 07:19:34 +02:00
}