25 lines
362 B
SCSS
25 lines
362 B
SCSS
#subproject-list {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
|
|
article {
|
|
width: calc(50% - 0.5rem);
|
|
min-width: 300px;
|
|
flex-grow: 1;
|
|
|
|
img {
|
|
margin: 0;
|
|
border-bottom-left-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
box-shadow: none;
|
|
object-fit: cover;
|
|
height: 200px;
|
|
width: 100%;
|
|
}
|
|
|
|
#subproject-info {
|
|
padding: 1.5rem;
|
|
}
|
|
}
|
|
}
|