Files
AGS_IT_Solutions_Website/styles/UeberUns.module.scss
2022-06-06 15:30:55 +02:00

39 lines
544 B
SCSS

.teamContainer {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
div {
height: 300px;
width: 250px;
border: 1px solid black;
border-radius: 10px;
text-align: center;
img {
object-fit: cover;
width: 100%;
height: 75%;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
h2 {
// margin: 0 1rem;
margin: 0;
padding: 0;
}
h3 {
// margin: -0.5rem 1rem;
margin: 0;
padding: 0;
color: grey;
font-weight: normal;
}
}
}